Current Path : /home/ephorei/www/wp-includes/images/media/q2m9hb/ |
Current File : /home/ephorei/www/wp-includes/images/media/q2m9hb/readme.txt.tar |
home/ephorei/www/wp-includes/ID3/readme.txt 0000644 00000063332 15006000051 0014554 0 ustar 00 ///////////////////////////////////////////////////////////////// /// getID3() by James Heinrich <info@getid3.org> // // available at http://getid3.sourceforge.net // // or https://www.getid3.org // // also https://github.com/JamesHeinrich/getID3 // ///////////////////////////////////////////////////////////////// ***************************************************************** ***************************************************************** getID3() is released under multiple licenses. You may choose from the following licenses, and use getID3 according to the terms of the license most suitable to your project. GNU GPL: https://gnu.org/licenses/gpl.html (v3) https://gnu.org/licenses/old-licenses/gpl-2.0.html (v2) https://gnu.org/licenses/old-licenses/gpl-1.0.html (v1) GNU LGPL: https://gnu.org/licenses/lgpl.html (v3) Mozilla MPL: https://www.mozilla.org/MPL/2.0/ (v2) getID3 Commercial License: https://www.getid3.org/#gCL (no longer available, existing licenses remain valid) ***************************************************************** ***************************************************************** Copies of each of the above licenses are included in the 'licenses' directory of the getID3 distribution. +----------------------------------------------+ | If you want to donate, there is a link on | | https://www.getid3.org for PayPal donations. | +----------------------------------------------+ Quick Start =========================================================================== Q: How can I check that getID3() works on my server/files? A: Unzip getID3() to a directory, then access /demos/demo.browse.php Support =========================================================================== Q: I have a question, or I found a bug. What do I do? A: The preferred method of support requests and/or bug reports is the forum at http://support.getid3.org/ Sourceforge Notification =========================================================================== It's highly recommended that you sign up for notification from Sourceforge for when new versions are released. Please visit: http://sourceforge.net/project/showfiles.php?group_id=55859 and click the little "monitor package" icon/link. If you're previously signed up for the mailing list, be aware that it has been discontinued, only the automated Sourceforge notification will be used from now on. What does getID3() do? =========================================================================== Reads & parses (to varying degrees): ¤ tags: * APE (v1 and v2) * ID3v1 (& ID3v1.1) * ID3v2 (v2.4, v2.3, v2.2) * Lyrics3 (v1 & v2) ¤ audio-lossy: * MP3/MP2/MP1 * MPC / Musepack * Ogg (Vorbis, OggFLAC, Speex, Opus) * AAC / MP4 * AC3 * DTS * RealAudio * Speex * DSS * VQF ¤ audio-lossless: * AIFF * AU * Bonk * CD-audio (*.cda) * FLAC * LA (Lossless Audio) * LiteWave * LPAC * MIDI * Monkey's Audio * OptimFROG * RKAU * Shorten * TTA * VOC * WAV (RIFF) * WavPack ¤ audio-video: * ASF: ASF, Windows Media Audio (WMA), Windows Media Video (WMV) * AVI (RIFF) * Flash * Matroska (MKV) * MPEG-1 / MPEG-2 * NSV (Nullsoft Streaming Video) * Quicktime (including MP4) * RealVideo ¤ still image: * BMP * GIF * JPEG * PNG * TIFF * SWF (Flash) * PhotoCD ¤ data: * ISO-9660 CD-ROM image (directory structure) * SZIP (limited support) * ZIP (directory structure) * TAR * CUE Writes: * ID3v1 (& ID3v1.1) * ID3v2 (v2.3 & v2.4) * VorbisComment on OggVorbis * VorbisComment on FLAC (not OggFLAC) * APE v2 * Lyrics3 (delete only) Requirements =========================================================================== * PHP 4.2.0 up to 5.2.x for getID3() 1.7.x (and earlier) * PHP 5.0.5 (or higher) for getID3() 1.8.x (and up) * PHP 5.3.0 (or higher) for getID3() 1.9.17 (and up) * PHP 5.3.0 (or higher) for getID3() 2.0.x (and up) * at least 4MB memory for PHP. 8MB or more is highly recommended. 12MB is required with all modules loaded. Usage =========================================================================== See /demos/demo.basic.php for a very basic use of getID3() with no fancy output, just scanning one file. See structure.txt for the returned data structure. *> For an example of a complete directory-browsing, <* *> file-scanning implementation of getID3(), please run <* *> /demos/demo.browse.php <* See /demos/demo.mysql.php for a sample recursive scanning code that scans every file in a given directory, and all sub-directories, stores the results in a database and allows various analysis / maintenance operations To analyze remote files over HTTP or FTP you need to copy the file locally first before running getID3(). Your code would look something like this: // Copy remote file locally to scan with getID3() $remotefilename = 'http://www.example.com/filename.mp3'; if ($fp_remote = fopen($remotefilename, 'rb')) { $localtempfilename = tempnam('/tmp', 'getID3'); if ($fp_local = fopen($localtempfilename, 'wb')) { while ($buffer = fread($fp_remote, 32768)) { fwrite($fp_local, $buffer); } fclose($fp_local); $remote_headers = array_change_key_case(get_headers($remotefilename, 1), CASE_LOWER); $remote_filesize = (isset($remote_headers['content-length']) ? (is_array($remote_headers['content-length']) ? $remote_headers['content-length'][count($remote_headers['content-length']) - 1] : $remote_headers['content-length']) : null); // Initialize getID3 engine $getID3 = new getID3; $ThisFileInfo = $getID3->analyze($localtempfilename, $remote_filesize, basename($remotefilename)); // Delete temporary file unlink($localtempfilename); } fclose($fp_remote); } Note: since v1.9.9-20150212 it is possible a second and third parameter to $getID3->analyze(), for original filesize and original filename respectively. This permits you to download only a portion of a large remote file but get accurate playtime estimates, assuming the format only requires the beginning of the file for correct format analysis. See /demos/demo.write.php for how to write tags. What does the returned data structure look like? =========================================================================== See structure.txt It is recommended that you look at the output of /demos/demo.browse.php scanning the file(s) you're interested in to confirm what data is actually returned for any particular filetype in general, and your files in particular, as the actual data returned may vary considerably depending on what information is available in the file itself. Notes =========================================================================== getID3() 1.x: If the format parser encounters a critical problem, it will return something in $fileinfo['error'], describing the encountered error. If a less critical error or notice is generated it will appear in $fileinfo['warning']. Both keys may contain more than one warning or error. If something is returned in ['error'] then the file was not correctly parsed and returned data may or may not be correct and/or complete. If something is returned in ['warning'] (and not ['error']) then the data that is returned is OK - usually getID3() is reporting errors in the file that have been worked around due to known bugs in other programs. Some warnings may indicate that the data that is returned is OK but that some data could not be extracted due to errors in the file. getID3() 2.x: See above except errors are thrown (so you will only get one error). Disclaimer =========================================================================== getID3() has been tested on many systems, on many types of files, under many operating systems, and is generally believe to be stable and safe. That being said, there is still the chance there is an undiscovered and/or unfixed bug that may potentially corrupt your file, especially within the writing functions. By using getID3() you agree that it's not my fault if any of your files are corrupted. In fact, I'm not liable for anything :) License =========================================================================== GNU General Public License - see license.txt This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to: Free Software Foundation, Inc. 59 Temple Place - Suite 330 Boston, MA 02111-1307, USA. FAQ: Q: Can I use getID3() in my program? Do I need a commercial license? A: You're generally free to use getID3 however you see fit. The only case in which you would require a commercial license is if you're selling your closed-source program that integrates getID3. If you sell your program including a copy of getID3, that's fine as long as you include a copy of the sourcecode when you sell it. Or you can distribute your code without getID3 and say "download it from getid3.sourceforge.net" Why is it called "getID3()" if it does so much more than just that? =========================================================================== v0.1 did in fact just do that. I don't have a copy of code that old, but I could essentially write it today with a one-line function: function getID3($filename) { return unpack('a3TAG/a30title/a30artist/a30album/a4year/a28comment/c1track/c1genreid', substr(file_get_contents($filename), -128)); } Future Plans =========================================================================== https://www.getid3.org/phpBB3/viewforum.php?f=7 * Better support for MP4 container format * Scan for appended ID3v2 tag at end of file per ID3v2.4 specs (Section 5.0) * Support for JPEG-2000 (http://www.morgan-multimedia.com/jpeg2000_overview.htm) * Support for MOD (mod/stm/s3m/it/xm/mtm/ult/669) * Support for ACE (thanks Vince) * Support for Ogg other than Vorbis, Speex and OggFlac (ie. Ogg+Xvid) * Ability to create Xing/LAME VBR header for VBR MP3s that are missing VBR header * Ability to "clean" ID3v2 padding (replace invalid padding with valid padding) * Warn if MP3s change version mid-stream (in full-scan mode) * check for corrupt/broken mid-file MP3 streams in histogram scan * Support for lossless-compression formats (http://www.firstpr.com.au/audiocomp/lossless/#Links) (http://compression.ca/act-sound.html) (http://web.inter.nl.net/users/hvdh/lossless/lossless.htm) * Support for RIFF-INFO chunks * http://lotto.st-andrews.ac.uk/~njh/tag_interchange.html (thanks Nick Humfrey <njhØsurgeradio*co*uk>) * http://abcavi.narod.ru/sof/abcavi/infotags.htm (thanks Kibi) * Better support for Bink video * http://www.hr/josip/DSP/AudioFile2.html * http://www.pcisys.net/~melanson/codecs/ * Detect mp3PRO * Support for PSD * Support for JPC * Support for JP2 * Support for JPX * Support for JB2 * Support for IFF * Support for ICO * Support for ANI * Support for EXE (comments, author, etc) (thanks p*quaedackersØplanet*nl) * Support for DVD-IFO (region, subtitles, aspect ratio, etc) (thanks p*quaedackersØplanet*nl) * More complete support for SWF - parsing encapsulated MP3 and/or JPEG content (thanks n8n8Øyahoo*com) * Support for a2b * Optional scan-through-frames for AVI verification (thanks rockcohenØmassive-interactive*nl) * Support for TTF (thanks infoØbutterflyx*com) * Support for DSS (https://www.getid3.org/phpBB3/viewtopic.php?t=171) * Support for SMAF (http://smaf-yamaha.com/what/demo.html) https://www.getid3.org/phpBB3/viewtopic.php?t=182 * Support for AMR (https://www.getid3.org/phpBB3/viewtopic.php?t=195) * Support for 3gpp (https://www.getid3.org/phpBB3/viewtopic.php?t=195) * Support for ID4 (http://www.wackysoft.cjb.net grizlyY2KØhotmail*com) * Parse XML data returned in Ogg comments * Parse XML data from Quicktime SMIL metafiles (klausrathØmac*com) * ID3v2 genre string creator function * More complete parsing of JPG * Support for all old-style ASF packets * ASF/WMA/WMV tag writing * Parse declared T??? ID3v2 text information frames, where appropriate (thanks Christian Fritz for the idea) * Recognize encoder: http://www.guerillasoft.com/EncSpot2/index.html http://ff123.net/identify.html http://www.hydrogenaudio.org/?act=ST&f=16&t=9414 http://www.hydrogenaudio.org/?showtopic=11785 * Support for other OS/2 bitmap structures: Bitmap Array('BA'), Color Icon('CI'), Color Pointer('CP'), Icon('IC'), Pointer ('PT') http://netghost.narod.ru/gff/graphics/summary/os2bmp.htm * Support for WavPack RAW mode * ASF/WMA/WMV data packet parsing * ID3v2FrameFlagsLookupTagAlter() * ID3v2FrameFlagsLookupFileAlter() * obey ID3v2 tag alter/preserve/discard rules * http://www.geocities.com/SiliconValley/Sector/9654/Softdoc/Illyrium/Aolyr.htm * proper checking for LINK/LNK frame validity in ID3v2 writing * proper checking for ASPI-TLEN frame validity in ID3v2 writing * proper checking for COMR frame validity in ID3v2 writing * http://www.geocities.co.jp/SiliconValley-Oakland/3664/index.html * decode GEOB ID3v2 structure as encoded by RealJukebox, decode NCON ID3v2 structure as encoded by MusicMatch (probably won't happen - the formats are proprietary) Known Bugs/Issues in getID3() that may be fixed eventually =========================================================================== https://www.getid3.org/phpBB3/viewtopic.php?t=25 * Cannot determine bitrate for MPEG video with VBR video data (need documentation) * Interlace/progressive cannot be determined for MPEG video (need documentation) * MIDI playtime is sometimes inaccurate * AAC-RAW mode files cannot be identified * WavPack-RAW mode files cannot be identified * mp4 files report lots of "Unknown QuickTime atom type" (need documentation) * Encrypted ASF/WMA/WMV files warn about "unhandled GUID ASF_Content_Encryption_Object" * Bitrate split between audio and video cannot be calculated for NSV, only the total bitrate. (need documentation) * All Ogg formats (Vorbis, OggFLAC, Speex) are affected by the problem of large VorbisComments spanning multiple Ogg pages, but but only OggVorbis files can be processed with vorbiscomment. * The version of "head" supplied with Mac OS 10.2.8 (maybe other versions too) does only understands a single option (-n) and therefore fails. getID3 ignores this and returns wrong md5_data. Known Bugs/Issues in getID3() that cannot be fixed -------------------------------------------------- https://www.getid3.org/phpBB3/viewtopic.php?t=25 * 32-bit PHP installations only: Files larger than 2GB cannot always be parsed fully by getID3() due to limitations in the 32-bit PHP filesystem functions. NOTE: Since v1.7.8b3 there is partial support for larger-than- 2GB files, most of which will parse OK, as long as no critical data is located beyond the 2GB offset. Known will-work: * all file formats on 64-bit PHP * ZIP (format doesn't support files >2GB) * FLAC (current encoders don't support files >2GB) Known will-not-work: * ID3v1 tags (always located at end-of-file) * Lyrics3 tags (always located at end-of-file) * APE tags (always located at end-of-file) Maybe-will-work: * Quicktime (will work if needed metadata is before 2GB offset, that is if the file has been hinted/optimized for streaming) * RIFF.WAV (should work fine, but gives warnings about not being able to parse all chunks) * RIFF.AVI (playtime will probably be wrong, is only based on "movi" chunk that fits in the first 2GB, should issue error to show that playtime is incorrect. Other data should be mostly correct, assuming that data is constant throughout the file) * PHP <= v5 on Windows cannot read UTF-8 filenames Known Bugs/Issues in other programs ----------------------------------- https://www.getid3.org/phpBB3/viewtopic.php?t=25 * MusicBrainz Picard (at least up to v1.3.2) writes multiple ID3v2.3 genres in non-standard forward-slash separated text rather than parenthesis-numeric+refinement style per the ID3v2.3 specs. Tags written in ID3v2.4 mode are written correctly. (detected and worked around by getID3()) * PZ TagEditor v4.53.408 has been known to insert ID3v2.3 frames into an existing ID3v2.2 tag which, of course, breaks things * Windows Media Player (up to v11) and iTunes (up to v10+) do not correctly handle ID3v2.3 tags with UTF-16BE+BOM encoding (they assume the data is UTF-16LE+BOM and either crash (WMP) or output Asian character set (iTunes) * Winamp (up to v2.80 at least) does not support ID3v2.4 tags, only ID3v2.3 see: http://forums.winamp.com/showthread.php?postid=387524 * Some versions of Helium2 (www.helium2.com) do not write ID3v2.4-compliant Frame Sizes, even though the tag is marked as ID3v2.4) (detected by getID3()) * MP3ext V3.3.17 places a non-compliant padding string at the end of the ID3v2 header. This is supposedly fixed in v3.4b21 but only if you manually add a registry key. This fix is not yet confirmed. (detected by getID3()) * CDex v1.40 (fixed by v1.50b7) writes non-compliant Ogg comment strings, supposed to be in the format "NAME=value" but actually written just "value" (detected by getID3()) * Oggenc 0.9-rc3 flags the encoded file as ABR whether it's actually ABR or VBR. * iTunes (versions "v7.0.0.70" is known-guilty, probably other versions are too) writes ID3v2.3 comment tags using an ID3v2.2 frame name (3-bytes) null-padded to 4 bytes which is not valid for ID3v2.3+ (detected by getID3() since 1.9.12-201603221746) * iTunes (versions "X v2.0.3", "v3.0.1" are known-guilty, probably other versions are too) writes ID3v2.3 comment tags using a frame name 'COM ' which is not valid for ID3v2.3+ (it's an ID3v2.2-style frame name) (detected by getID3()) * MP2enc does not encode mono CBR MP2 files properly (half speed sound and double playtime) * MP2enc does not encode mono VBR MP2 files properly (actually encoded as stereo) * tooLAME does not encode mono VBR MP2 files properly (actually encoded as stereo) * AACenc encodes files in VBR mode (actually ABR) even if CBR is specified * AAC/ADIF - bitrate_mode = cbr for vbr files * LAME 3.90-3.92 prepends one frame of null data (space for the LAME/VBR header, but it never gets written) when encoding in CBR mode with the DLL * Ahead Nero encodes TwinVQF with a DSIZ value (which is supposed to be the filesize in bytes) of "0" for TwinVQF v1.0 and "1" for TwinVQF v2.0 (detected by getID3()) * Ahead Nero encodes TwinVQF files 1 second shorter than they should be * AAC-ADTS files are always actually encoded VBR, even if CBR mode is specified (the CBR-mode switches on the encoder enable ABR mode, not CBR as such, but it's not possible to tell the difference between such ABR files and true VBR) * STREAMINFO.audio_signature in OggFLAC is always null. "The reason it's like that is because there is no seeking support in libOggFLAC yet, so it has no way to go back and write the computed sum after encoding. Seeking support in Ogg FLAC is the #1 item for the next release." - Josh Coalson (FLAC developer) NOTE: getID3() will calculate md5_data in a method similar to other file formats, but that value cannot be compared to the md5_data value from FLAC data in a FLAC file format. * STREAMINFO.audio_signature is not calculated in FLAC v0.3.0 & v0.4.0 - getID3() will calculate md5_data in a method similar to other file formats, but that value cannot be compared to the md5_data value from FLAC v0.5.0+ * RioPort (various versions including 2.0 and 3.11) tags ID3v2 with a WCOM frame that has no data portion * Earlier versions of Coolplayer adds illegal ID3 tags to Ogg Vorbis files, thus making them corrupt. * Meracl ID3 Tag Writer v1.3.4 (and older) incorrectly truncates the last byte of data from an MP3 file when appending a new ID3v1 tag. (detected by getID3()) * Lossless-Audio files encoded with and without the -noseek switch do actually differ internally and therefore cannot match md5_data * iTunes has been known to append a new ID3v1 tag on the end of an existing ID3v1 tag when ID3v2 tag is also present (detected by getID3()) * MediaMonkey may write a blank RGAD ID3v2 frame but put actual replay gain adjustments in a series of user-defined TXXX frames (detected and handled by getID3() since v1.9.2) Reference material: =========================================================================== [www.id3.org material now mirrored at http://id3lib.sourceforge.net/id3/] * http://www.id3.org/id3v2.4.0-structure.txt * http://www.id3.org/id3v2.4.0-frames.txt * http://www.id3.org/id3v2.4.0-changes.txt * http://www.id3.org/id3v2.3.0.txt * http://www.id3.org/id3v2-00.txt * http://www.id3.org/mp3frame.html * http://minnie.tuhs.org/pipermail/mp3encoder/2001-January/001800.html <mathewhendry@hotmail.com> * http://www.dv.co.yu/mpgscript/mpeghdr.htm * http://www.mp3-tech.org/programmer/frame_header.html * http://users.belgacom.net/gc247244/extra/tag.html * http://gabriel.mp3-tech.org/mp3infotag.html * http://www.id3.org/iso4217.html * http://www.unicode.org/Public/MAPPINGS/ISO8859/8859-1.TXT * http://www.xiph.org/ogg/vorbis/doc/framing.html * http://www.xiph.org/ogg/vorbis/doc/v-comment.html * http://leknor.com/code/php/class.ogg.php.txt * http://www.id3.org/iso639-2.html * http://www.id3.org/lyrics3.html * http://www.id3.org/lyrics3200.html * http://www.psc.edu/general/software/packages/ieee/ieee.html * http://www.scri.fsu.edu/~jac/MAD3401/Backgrnd/ieee-expl.html * http://www.scri.fsu.edu/~jac/MAD3401/Backgrnd/binary.html * http://www.jmcgowan.com/avi.html * http://www.wotsit.org/ * http://www.herdsoft.com/ti/davincie/davp3xo2.htm * http://www.mathdogs.com/vorbis-illuminated/bitstream-appendix.html * "Standard MIDI File Format" by Dustin Caldwell (from www.wotsit.org) * http://midistudio.com/Help/GMSpecs_Patches.htm * http://www.xiph.org/archives/vorbis/200109/0459.html * http://www.replaygain.org/ * http://www.lossless-audio.com/ * http://download.microsoft.com/download/winmediatech40/Doc/1.0/WIN98MeXP/EN-US/ASF_Specification_v.1.0.exe * http://mediaxw.sourceforge.net/files/doc/Active%20Streaming%20Format%20(ASF)%201.0%20Specification.pdf * http://www.uni-jena.de/~pfk/mpp/sv8/ (archived at http://www.hydrogenaudio.org/musepack/klemm/www.personal.uni-jena.de/~pfk/mpp/sv8/) * http://jfaul.de/atl/ * http://www.uni-jena.de/~pfk/mpp/ (archived at http://www.hydrogenaudio.org/musepack/klemm/www.personal.uni-jena.de/~pfk/mpp/) * http://www.libpng.org/pub/png/spec/png-1.2-pdg.html * http://www.real.com/devzone/library/creating/rmsdk/doc/rmff.htm * http://www.fastgraph.com/help/bmp_os2_header_format.html * http://netghost.narod.ru/gff/graphics/summary/os2bmp.htm * http://flac.sourceforge.net/format.html * http://www.research.att.com/projects/mpegaudio/mpeg2.html * http://www.audiocoding.com/wiki/index.php?page=AAC * http://libmpeg.org/mpeg4/doc/w2203tfs.pdf * http://www.geocities.com/xhelmboyx/quicktime/formats/qtm-layout.txt * http://developer.apple.com/techpubs/quicktime/qtdevdocs/RM/frameset.htm * http://www.nullsoft.com/nsv/ * http://www.wotsit.org/download.asp?f=iso9660 * http://sandbox.mc.edu/~bennet/cs110/tc/tctod.html * http://www.cdroller.com/htm/readdata.html * http://www.speex.org/manual/node10.html * http://www.harmony-central.com/Computer/Programming/aiff-file-format.doc * http://www.faqs.org/rfcs/rfc2361.html * http://ghido.shelter.ro/ * http://www.ebu.ch/tech_t3285.pdf * http://www.sr.se/utveckling/tu/bwf * http://ftp.aessc.org/pub/aes46-2002.pdf * http://cartchunk.org:8080/ * http://www.broadcastpapers.com/radio/cartchunk01.htm * http://www.hr/josip/DSP/AudioFile2.html * http://home.attbi.com/~chris.bagwell/AudioFormats-11.html * http://www.pure-mac.com/extkey.html * http://cesnet.dl.sourceforge.net/sourceforge/bonkenc/bonk-binary-format-0.9.txt * http://www.headbands.com/gspot/ * http://www.openswf.org/spec/SWFfileformat.html * http://j-faul.virtualave.net/ * http://www.btinternet.com/~AnthonyJ/Atari/programming/avr_format.html * http://cui.unige.ch/OSG/info/AudioFormats/ap11.html * http://sswf.sourceforge.net/SWFalexref.html * http://www.geocities.com/xhelmboyx/quicktime/formats/qti-layout.txt * http://www-lehre.informatik.uni-osnabrueck.de/~fbstark/diplom/docs/swf/Flash_Uncovered.htm * http://developer.apple.com/quicktime/icefloe/dispatch012.html * http://www.csdn.net/Dev/Format/graphics/PCD.htm * http://tta.iszf.irk.ru/ * http://www.atsc.org/standards/a_52a.pdf * http://www.alanwood.net/unicode/ * http://www.freelists.org/archives/matroska-devel/07-2003/msg00010.html * http://www.its.msstate.edu/net/real/reports/config/tags.stats * http://homepages.slingshot.co.nz/~helmboy/quicktime/formats/qtm-layout.txt * http://brennan.young.net/Comp/LiveStage/things.html * http://www.multiweb.cz/twoinches/MP3inside.htm * http://www.geocities.co.jp/SiliconValley-Oakland/3664/alittle.html#GenreExtended * http://www.mactech.com/articles/mactech/Vol.06/06.01/SANENormalized/ * http://www.unicode.org/unicode/faq/utf_bom.html * http://tta.corecodec.org/?menu=format * http://www.scvi.net/nsvformat.htm * http://pda.etsi.org/pda/queryform.asp * http://cpansearch.perl.org/src/RGIBSON/Audio-DSS-0.02/lib/Audio/DSS.pm * http://trac.musepack.net/trac/wiki/SV8Specification * http://wyday.com/cuesharp/specification.php * http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html * http://www.codeproject.com/Articles/8295/MPEG-Audio-Frame-Header * http://dsd-guide.com/sites/default/files/white-papers/DSFFileFormatSpec_E.pdf * https://fileformats.fandom.com/wiki/Torrent_file home/ephorei/www/wp-content/plugins/wp-console/readme.txt 0000644 00000013620 15006115062 0017614 0 ustar 00 === WP Console - WordPress PHP Console powered by PsySH === Contributors: ediamin Tags: repl, browser, shell, dump, autocomplete Requires at least: 5.3.12 Tested up to: 6.7.1 Requires PHP: 7.4 Stable tag: 2.5.1 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html An in-browser PHP console for WordPress powered by PsySH == Description == WP Console brings the renowned PsySH directly to your browser. PsySH serves as a runtime developer console, an interactive debugger, and a PHP REPL (Read-Eval-Print Loop). To utilize WP Console, simply write your code within the code editor, then press Cmd-Enter (mac) or Ctrl-Enter (win/linux) to instantly view the output in your browser. Moreover, you have the option to employ PsySH alongside wp-cli by executing the command `wp shell`. Notably, wp-cli comes with inherent compatibility for psysh. All that is required is the activation of WP Console to leverage this feature. == Features == - Powerful code editor powered by Ace Editor. - Real-time autocompletion for PHP core and WordPress functions, complete with placeholders. - Introducing `_dump` as a more versatile alternative to `var_dump`, leveraging the capabilities of Symfony VarDumper. - Instant access to debug.log contents, with the added convenience of clearing them directly from your browser. - Enhanced shell experience courtesy of psySH, facilitating advanced interaction through `wp shell`. - Customizable code snippet functionality, compatible with VS Code supported code snippets. Explore examples like these [WooCommerce snippets](https://github.com/claudiosanches/vscode-woocommerce/blob/master/snippets/functions.json). Please note that certain PsySH commands, such as `ls`, `doc`, `show`, and magic variables like `$_`, `$__class`, are not currently supported in the browser console. 👉 WP Console uses Gutenberg packages and components to ensure a seamless and user-friendly UI/UX. == Getting Started == To begin using the plugin, follow these steps: 1. Activate the plugin within your WordPress setup. 2. Look for a quick link labeled "Console" in the WP Admin Bar on the right-hand side (see the second screenshot below). 3. Click on the "Console" link to access the WP Console panel. == Security Concern == WP Console explicitly verifies the presence of the `manage_options` permission to render the user interface and execute various functions. However, it's important to note that this plugin is not intended for use on a production server. == Other Plugin == Working with the block or the block editor? Checkout [CSS Class Manager](https://wordpress.org/plugins/css-class-manager/) – An advanced autocomplete additional css class control for your blocks. == Screenshots == 1. Basic input output 2. How to open the browser console 3. _dump command 4. Vertical splitted window 5. Live Autocompletion 6. Autocompletion with placeholder 7. Display errors 8. wp shell command 9. Get debug.log contents 10. Clear debug.log 11. Add/Edit custom snippets 12. Custom snippets in action == Changelog == 2.5.1 - January 13, 2025 * Prevent HTML rendering in console output. 2.5.0 - November 17, 2024 * Breaking: Dropped support for PHP 5.6. The minimum PHP requirement is now 7.4. * Refactored the dependency loading process for improved performance and maintainability. * Fixed namespace compatibility issues for PHP 8.1+. * Resolved deprecation warnings in recent WordPress versions. 2.4.1 - November 13, 2023 * Fix deprecation notice in PHP 8.2 related to strtolower argument type. * Add an admin submenu under the tools menu to open the console window. * Update WordPress compatibility to the latest version 6.4.2. 2.4.0 - August 09, 2023 * Add support for PHP 8.0+. * Update Ace Editor version to 1.23.4. 2.3.1 - July 31, 2022 * Update script version of ace. 2.3.0 - July 27, 2022 * Add code execution time in console output panel. * Use ace.js with custom namespace to avoid conflict with other ace.js source. * Fix snippet manager module style. * Use verticle split as default in console panel. * Fix error handling for PHP v5.6. * Fix some UI issues in different WordPress versions. * Add wp-env and e2e testing with Jest using wp-scripts for developing the plugin. 2.2.0 - November 22, 2020 * Add custom code snippet support. You can use VS Code supported PHP code snippets now. * Add Copy Output button. * Enqueue scripts only for manage_options capability owners. * Improve handling uncaught fatal errors. * Add Twenty Twenty theme compatibility. * Set default values for user Console settings in REST API. * Fix horizontal output scolling issue for vertically split console. * Fix close button get disappear in WooCommerce admin pages. * Fix error line no in console editor. 2.1.0 - April 14, 2020 * Lazy load React components to improve performance. * Use a single store source for all components. * Reset console responses after close app window. * Fix navigation button icon css for WP v5.4. * Resize editor screen after toggle split mode. 2.0.0 - December 11, 2019 * Revamp UI/UX. * Add Ace editor as code editor plugin. Remove CodeMirror. * Live autocompletion with placeholders. * Option to vertically split editor and output window. * Add ability to clear debug.log. * Restrict plugin UI and REST APIs for users who have manage_options capability. 1.5.0 - November 07, 2019 * Tweak - Change `dump` function name to `_dump` to resolve conflict with wp-erp. 1.4.0 - November 02, 2019 * New - Save code editor history in localStorage. * Tweak - Use wp-scripts for assets build process. 1.3.0 - October 26, 2019 * New - Fetch debug.log contents. * Tweak - Support PHP version 5.6. 1.2.0 - July 27, 2019 * New - Add autocompletion data(WP functions, PHP booleans, constants, functions, keywords). * New - Add codemirror closebrackets, matchbrackets addon scripts. * New - Show error stacktrace. 1.1.0 - June 25, 2019 * New - Use output buffer handler. * New - Add build process. * Tweak - Remove unnecessary code. 1.0.0 - June 21, 2019 Initial release. home/ephorei/www/wp-content/themes/twentytwentythree/readme.txt 0000644 00000006003 15006115227 0021167 0 ustar 00 === Twenty Twenty-Three === Contributors: wordpressdotorg Requires at least: 6.1 Tested up to: 6.7 Requires PHP: 5.6 Stable tag: 1.6 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html == Description == Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself. == Changelog == = 1.6 = * Released: November 12, 2024 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.6 = 1.5 = * Released: July 16, 2024 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.5 = 1.4 = * Released: April 2, 2024 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.4 = 1.3 = * Released: November 7, 2023 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.3 = 1.2 = * Released: August 8, 2023 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.2 = 1.1 = * Released: March 28, 2023 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.1 = 1.0 = * Released: November 1, 2022 https://wordpress.org/documentation/article/twenty-twenty-three-changelog/#Version_1.0 == Copyright == Twenty Twenty-Three WordPress Theme, (C) 2022-2024 WordPress.org and contributors. Twenty Twenty-Three is distributed under the terms of the GNU GPL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This theme bundles the following third-party resources: DM Sans Font Copyright 2014-2017 Indian Type Foundry (info@indiantypefoundry.com) Copyright 2019 Google LLC Copyright 2014-2018 Adobe (http://www.adobe.com/) License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/googlefonts/dm-fonts IBM Plex Font Copyright 2017 IBM Corp. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/IBM/plex Inter Font Copyright (c) 2016-2020 The Inter Project Authors. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/rsms/inter Source Serif Font Copyright 2014-2021 Adobe (http://www.adobe.com/) License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/adobe-fonts/source-serif home/ephorei/www/wp-content/themes/astra/readme.txt 0000644 00000013545 15006117536 0016462 0 ustar 00 === Astra === Contributors: brainstormforce License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Tags: custom-menu, custom-logo, entertainment, featured-images, full-width-template, one-column, two-columns, left-sidebar, e-commerce, right-sidebar, custom-colors, editor-style, featured-images, full-width-template, microformats, post-formats, rtl-language-support, theme-options, threaded-comments, translation-ready, blog Tested up to: 6.7 Requires PHP: 5.3 Stable tag: 4.8.8 Astra is fast, fully customizable & beautiful WordPress theme suitable for blog, personal portfolio, business website and WooCommerce storefront. == Description == Astra is fast, fully customizable & beautiful WordPress theme suitable for blog, personal portfolio, business website and WooCommerce storefront. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with Schema.org code integrated and is Native AMP ready so search engines will love your site. It offers special features and templates so it works perfectly with all page builders like Elementor, Beaver Builder, Visual Composer, SiteOrigin, Divi, etc. Some of the other features: # WooCommerce Ready # Responsive # RTL & Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and WooCommerce ready theme that you can use for building any kind of website! == Installation == = From within WordPress = 1. Visit "Appearance > Themes > Add New" 2. Search for "Astra" 3. Install and activate == License == Astra WordPress Theme, Copyright 2020 WPAstra. Astra is distributed under the terms of the GNU GPL. Astra is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc. Underscores is distributed under the terms of the GNU GPL v2 or later. == Features == = Appearance > Widgets = Astra has up to 4 widget area. 1 in your header, 1 for each sidebar and up to 2 in your footer. = Appearance > Customize = - Site Identity: Hide your site title or tagline, and upload your own header. - Layout: Change things like your container width, header layout, Header width, Custom menu item , sidebar layout and much more. - Set footer layout there is a two footer layout layout 1 and layout 2. layout 1 is stack style and layout 2 is inline. - Blog: Show the full post or excerpt, also show and hide blog post meta & adjust blog post width to default or custom. - Single post:Set single post meta and adjust width to custom or default. - Colors & background: Choose your default background color, body color, theme color and link color. - Typography: Choose your default body font & set default font size to H1 to H6 tags, Site title, tagline & blog post title on archive page and single page. = ASTRA Child Theme = There are multiple ways you can use a child theme with the Astra Theme, Use any one method mentoned below to create a child theme or use a child theme we have created. 1. Download the child theme from Github - https://github.com/brainstormforce/astra-child/releases/latest/ 2. More information on creating child theme. - https://developer.wordpress.org/themes/advanced-topics/child-themes/ = Screenshot & WP-Preview Starter Content Licenses = Screenshot image is a collage of actual sites created using the Astra WordPress Theme. Icons used are all licensed under Massachusetts Institute of Technology ( MIT ) License ( https://heroicons.com ) Illustrations used are all licensed under Creative Commons ( CC0 ) License ( https://gumroad.com/l/humaaans ) https://websitedemos.net/web-design-agency-08/wp-content/uploads/sites/796/2021/05/standing-24.png https://websitedemos.net/web-design-agency-08/wp-content/uploads/sites/796/2021/05/sitting-2.png Hand-drawn illustrations used are created by Brainstorm Force and released under Creative Commons ( CC0 ) License. https://websitedemos.net/web-design-agency-08/wp-content/uploads/sites/796/2021/05/girl-with-image-container.png https://websitedemos.net/web-design-agency-08/wp-content/uploads/sites/796/2021/05/boy-with-code-container.png https://websitedemos.net/web-design-agency-08/wp-content/uploads/sites/796/2021/05/web-browser.png Images used in the WordPress preview starter content are all licensed under Creative Commons ( CC0 ) License ( https://pxhere.com ) The same site as screenshot can be imported from here https://websitedemos.net/web-design-agency-08/. For more information, refer to this document on how to create a page like in the screenshot - https://wpastra.com/docs/replicating-the-screenshot/. = Normalizing styles = Normalizing styles have been helped along thanks to the fine work of. Nicolas Gallagher and Jonathan Neal https://necolas.github.com/normalize.css/ = Flexibility JS = Flexibility is a JavaScript polyfill for Flexbox By Jonathan Neal, 10up. (https://github.com/jonathantneal/flexibility) Licensed under MIT ( https://github.com/jonathantneal/flexibility/blob/master/LICENSE.md ) = IcoMoon-Free = Astra icon font is based on IcoMoon-Free vector icon by Keyamoon. IcoMoon-Free vector icon destributed under trems of CC BY 4.0 or GPL. (https://creativecommons.org/licenses/by/4.0/ or https://www.gnu.org/licenses/gpl.html) Source: http://keyamoon.com/ = Breadcrumb Trail = Astra default breadcrumb is based on Breadcrumb Trail by Justin Tadlock. (https://github.com/justintadlock/breadcrumb-trail) Breadcrumb Trail is distributed under the terms of the GNU GPL v2 or later. Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html) = Webfonts Loader = Astra local fonts feature is based on Webfonts Loader by WordPress Themes Team (WPTT). (https://github.com/WPTT/webfont-loader) Licensed under MIT ( https://github.com/WPTT/webfont-loader/blob/master/LICENSE ) home/ephorei/www/wp-content/plugins/sureforms/readme.txt 0000644 00000046546 15006120630 0017565 0 ustar 00 === SureForms – Drag and Drop Form Builder for WordPress === Contributors: brainstormforce Tags: contact form, custom form, form builder, forms, gutenberg Requires at least: 6.4 Tested up to: 6.7.1 Requires PHP: 7.4 Stable tag: 1.2.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html SureForms: Transform your WordPress form-building experience with stunning designs, ai integration, and no-code flexibility. == Description == ### SUREFORMS – THE BEST NO-CODE FORM BUILDER #### CREATE BEAUTIFUL RESPONSIVE FORMS USING WORDPRESS WITHOUT CODING ⚡ ★★★★★ [youtube https://www.youtube.com/watch?v=qLpnm4GdXks] Our mission at SureForms is to empower you to build beautiful forms without code. We're taking a fresh approach by harnessing the power of WordPress's native drag-and-drop interface. Our goal is to provide our customers with a seamless and intuitive form-building experience, eliminating the need to learn a whole new interface. We recognize the importance of good design and user experience, especially when it comes to forms. After all, the ultimate aim of most websites is to get those forms filled out. "Unfortunately, many website owners struggle to design forms that match the overall website aesthetics and user experience." SureForms addresses several pain points commonly experienced by website owners: - **Complex Form Building**: Form builders often have steep learning curves, convoluted interfaces, or limited customization options. SureForms aims to simplify the form-building process, providing a user-friendly interface and intuitive drag-and-drop functionality using WordPress's native block editor. - **Design Limitations**: Designers face challenges in creating visually appealing forms. Form builders require designers to spend hours trying to figure out settings and options just to get the form look right. Or write custom CSS. SureForms eliminates these limitations by providing modern styling right out-of-the-box, allowing designers to create stunning forms that seamlessly integrate with their design vision. - **Lack of Mobile Friendliness**: Building forms that are mobile-friendly can be a challenge. SureForms priorities mobile-first design, ensuring that forms created with the plugin are responsive, providing a positive user experience across different devices. In response to these pain points, we set out to create SureForms. Our goal is to provide a fresh and innovative form builder that leverages the power of native WordPress drag-and-drop builder, delivering a seamless and intuitive form-building experience. We want to empower website makers to effortlessly create stunning, modern-looking forms right out of the box, eliminating the need for extensive customization or reliance on external styling elements. That's why we're committed to delivering stunning, modern-looking forms right out of the box. Gone are the days of relying on themes for styling or spending endless hours tweaking settings and writing custom CSS. With SureForms, our customers can expect a delightful range of pre-made form styling that will make their forms look amazing from the very start. And if they want to infuse their personal touch, customizing the styling should be a breeze, whether it's through easy-to-use settings or diving into CSS. We're here to empower our customers to create forms that not only function flawlessly but also captivate their audience. Say goodbye to the mundane and hello to a whole new level of form-building experience. With SureForms, let's revolutionize the way people create and design forms for their websites. ### HOW IT WORKS ❓ From installation to creating your first form, SureForms is designed to be simple and intuitive. Here is how it works: #### Step 1. Install WordPress Plugin 🔌 From your WordPress dashboard, navigate to the Plugins menu and click on the “Add New” button. Search for the SureForms plugin, then click “Install Now” and “Activate”. #### Step 2. Build your Form ⚙️ Once the plugin is installed, you will be redirected to the SureForms dashboard page in your WordPress dashboard. There you will find a button to create a new form. Click it to build and customize your form using the SureForms interface to suit your requirements. #### Step 3. Embed your Form 📄 Once your form is ready, easily embed it on any page or post using the provided shortcode or block. ### SOME POWERFUL FEATURES OF SUREFORMS 💪 SureForms is packed with features that will help you create forms fast and save time. Below are some of the top features it offers: #### Native WordPress SureForms leverages the power of WordPress's native block editor, as its foundation. This integration provides a seamless and intuitive form-building experience for users familiar with the WordPress ecosystem. By utilizing drag-and-drop interface, SureForms eliminates the need to learn a separate form builder, saving time and simplifying the form creation process. #### Create Forms Effortlessly with AI SureForms empowers users to build custom forms effortlessly using AI. Whether you're creating simple contact forms or complex multi-step surveys, our AI engine intelligently guides you through the process, offering suggestions and optimizing form fields based on your needs. No need to worry about the details—AI does the heavy lifting, helping you craft forms that are functional, user-friendly, and tailored to your audience with just a few clicks. #### Here are a few examples of forms you can create with SureForms AI: - Contact Form - Feedback / Survey Form - Event RSVP Form - Job Application Form - Newsletter Form - Support Form #### No-Code Flexibility SureForms caters to users who may not possess extensive coding knowledge. It offers a range of advanced form features, such as conditional logic, multi-step forms, dynamic data handling, and query parameters, all accessible through an intuitive, no-code interface. This empowers users of all levels to create sophisticated and interactive forms without the need for custom coding. #### Mobile-First SureForms recognizes the importance of mobile responsiveness. The forms created with SureForms are designed with a mobile-first approach, ensuring they look and function flawlessly on various devices. #### Instant Forms Publish forms instantly as a URL that can be easily shared across the web, via email, or social media. Make our forms available to anyone, anywhere. #### Multi-Column Layouts Arrange input fields into multiple columns to create a sleek and efficient form layout. This approach enhances the form's appearance, making it appear more condensed and visually appealing, thereby reducing the likelihood of users abandoning the form. Place input fields in multiple columns to customize the layout according to your preferences. #### Input Fields **SureForms comes with 15+ fields to build your form:** * Text Field * Email * URL * Textarea * Multiple Choice * Checkbox * GDPR Agreement * Number Field * Phone Number * Dropdown * Address Field * Custom Button * Separator * Heading * Image * Icon #### Inline Field Validation Real-time validation for form fields provides instant feedback to users if they enter incorrect or incomplete information. This ensures data accuracy and enhances the user experience. #### GDPR Compliance Ensure your forms are compliant with GDPR regulations to protect user data and privacy. #### Anti-Spam Anti-spam measures protect forms from unwanted submissions. Built-in spam protection ensures form submissions are genuine and reliable. Integrate with Google reCAPTCHA, providing an additional layer of security against spam and bots, ensuring the integrity of form submissions. Honeypot field to detect and prevent automated form submissions. This hidden field helps identify and block spam bots without requiring any user interaction. #### Confirmations Customize confirmation messages or redirections that are displayed to users after successful form submissions. Tailor these messages to provide personalized feedback or redirect respondents to specific pages. #### Email Notifications Configure customized email notifications triggered by form submissions. Specify recipients, email templates, and personalized messages to stay informed and automate communication. #### Form Entries Stores form entries securely to access and manage form submission data within the WordPress dashboard. Review, export, or perform actions on form entries as needed. #### Visual Data Reporting Analyze and gain insights from form submissions through interactive charts, graphs, and data visualizations. Take data-driven decisions. #### Developer-Friendly Customization For developers seeking advanced customization options, SureForms provides clean APIs, extensive hooks, and developer-friendly code. This allows developers to extend and integrate SureForms with other systems, plugins, or themes seamlessly. The plugin's code is designed to be accessible and well-structured, making it easy for developers to customize and tailor the forms to their specific requirements. ### WHO CAN BENEFIT FROM SUREFORMS? Any individual or organization that wants to create forms to gather information from their users can greatly benefit from using SureForms. 1. **Website Owners**: SureForms is aimed at individuals and businesses who manage their own websites. It provides an intuitive and user-friendly interface that empowers website owners to create beautiful and functional forms without requiring technical knowledge or coding skills. 2. **Designers**: SureForms appeals to designers who value good design and want to create visually stunning forms. It offers customizable styling options to create forms that seamlessly integrate into the existing website design. 3. **Developers**: SureForms understands the needs of developers and aims to provide a developer-friendly solution. Our plugin offers clean APIs, hooks for customization, and well-structured code, making it easy for developers to extend the functionality and integrate with other systems or plugins. Writing custom CSS is a breeze too. 4. **No Code Professionals**: SureForms appeals to professionals who may not have coding skills but still require advanced form features. With capabilities such as conditional logic, multi-step forms, dynamic data handling, query parameters, and more, SureForms offers a comprehensive solution for building complex forms without the need for custom coding. There is no limit to the types of businesses and organizations that can benefit from using SureForms. ### SOME OF THE WORDPRESS THEMES & PLUGINS SUREFORMS SUPPORTS 🔗 #### SureForms works with any theme, including: * Astra * Spectra One * Blocksy * Bricks Builder * Flatsome * GeneratePress * Hestia * Kadence * Neve #### SureForms is compatible with all plugins, including: * Spectra * Easy Digital Downloads * FluentCRM * GiveWP * LearnDash * LifterLMS * MemberPress * PrestoPlayer * Restrict Content Pro * SureCart * SureMembers * SureTriggers * The Events Calendar * TutorLMS * Wishlist Member * WooCommerce * CartFlows * Elementor Pro * Beaver Builder * Divi Builder * Yoast SEO * And many more ### BRANDING GUIDELINE #### SureForms® is a registered trademark. Please use the following format when mentioning SureForms anywhere: * SureForms [correct] * Sure Forms [incorrect] * Sureform [incorrect] * Sureforms [incorrect] * Sure forms [incorrect] * SureForm [incorrect] * Sure Form [incorrect] ### CONNECT WITH OUR TEAM AND COMMUNITY [Join our Facebook group community](https://www.facebook.com/groups/surecart): Learn the tricks and techniques that other SureForms users are using to grow their business. Also, get exciting insider information on upcoming feature releases. ### USE OF 3RD PARTY SERVICES To improve the user experience, SureForms may use the following 3rd party services if the required features are enabled: * **ipinfo** - is used to show User IP Info to Admin when IP Logging is turned on. [TOS](https://ipinfo.io/terms-of-service) and [Privacy Policy](https://ipinfo.io/privacy-policy) * **Google Fonts** – are loaded to add additional fonts to your website. Google’s [TOS](https://policies.google.com/terms) and [Privacy Policy](https://policies.google.com/privacy) * **ipapi** – is used to auto detect the current user region for Phone Field [TOS](https://ipapi.co/terms/) and [Privacy Policy](https://ipapi.co/privacy/) * **reCAPTCHA** – is used for spam prevention and to ensure that the submissions made through the form are done by real human users [TOS](https://policies.google.com/terms) and [Privacy Policy](https://policies.google.com/privacy) == Installation == 1. Upload the SureForms folder to the /wp-content/plugins/ directory 2. Activate the SureForms plugin through the ‘Plugins’ menu in WordPress == Frequently Asked Questions == = Do I need coding skills to create forms using SureForms? = No, you don’t need any coding skills to create forms with SureForms! SureForms offers a user-friendly interface and a visual block builder, allowing you to create forms by dragging and dropping the form fields. This means that you can create forms without having to write any code or have any technical expertise. Whether you’re a small business owner, a freelancer, or just someone who wants to create beautiful responsive forms, SureForms makes it easy to create forms without any coding skills. = What are the requirements to use SureForms? = You only need to have the latest version of WordPress on your website, to begin with. SureForms is basically a plugin like any other WordPress plugin. Therefore, the latest WordPress installation along with a theme is enough to begin with. = Can I use SureForms along with a Page Builder? = SureForms needs the latest WordPress version. We have also made it compatible with all major page builders and therefore, it won’t interfere in their working. = Will SureForms slow down my website? = Absolutely not! SureForms is built with ease and performance in mind. Its module architecture and the clean code keep it lightweight and fast. Therefore, it will not affect your website speed and performance in any way. = Can I use SureForms on client websites? = Yes! You can certainly use SureForms on yours as well as your client’s websites. = What more do I get with SureForms? = When you use SureForms, you get an easy-to-use AI-powered form builder that can be used to build your forms fast. == Changelog == = 1.2.1 - 17th December 2024 = * Improvement: Revamped the General and Spam Protection settings for an improved user experience. * Improvement: Enhanced screen reader announcements for validation messages. * Improvement: Improved screen reader accessibility to announce block labels and help text on tab navigation. * Improvement: Made global validation messages dynamic for better adaptability. * Improvement: Added translation compatibility for validation message input labels in admin settings. * Improvement: Resolved CSS conflicts for checkboxes in forms with WooCommerce and Elementor installed. * Fix: Resolved an issue where the Mac screen reader stopped reading form fields, pausing at the Dropdown field. * Fix: Addressed a compatibility issue between the date filter and the entries export functionality. * Fix: Resolved an issue where phonewords were not accepted. = 1.2.0 - 11th December 2024 = * New: Added Zapier integration for SureForms Pro. * Improvement: Added support for including the Entry ID in SureTriggers' workflows, enhancing integration capabilities. * Improvement: Updated styling to ensure proper focus borders for the Checkbox and GDPR fields when navigating with a screen reader. * Fix: Resolved a conflict with the WPCode Plugin. * Fix: Fixed an issue where the Phone Number field unique validation wasn't triggering correctly. = 1.1.1 - 5th December 2024 = * New: Added an option to export entries in CSV format. * Improvement: Introduced a "What's New" notifier to highlight updates. * Improvement: Redesigned the search input for the Phone Number field to enhance user experience. * Improvement: Updated the SureForms Gutenberg block to API v3 for compatibility with the WordPress zoom feature. * Fix: Addressed an issue where the first field was left empty when using Honeypot Security, and refined the form submission logic. * Fix: Fixed form submission failures on sites with WordPress installed in a non-root directory. * Fix: Fixed an issue where settings pages were hidden when the plugin title was translated. * Fix: Resolved a validation error in the Multiple Choice field for minimum and maximum selections. * Fix: Resolved an issue where the dropdown search query wasn't cleared after selecting an option. = 1.1.0 - 28th November 2024 = * New: Support for generating multiple choice fields with icons while creating forms with AI. * Improvement: Added search option for phone number country code list. * Improvement: Accessibility fixes for using the Dropdown field's clear button with keyboard. = 1.0.6 - 20th November 2024 = * Fix: Fixed Webhook functionality for GDPR-enabled forms and other submission options. * Fix: Resolved an issue where Icon, Heading, Image, and Separator fields were not displaying on the front end. = 1.0.5 - 19th November 2024 = * New: Introduced the {form_title} smart tag to dynamically insert the form's title. * Improvement: Added an action triggered before form submission. * Improvement: Enabled translation support for hardcoded UI text to enhance localization. * Improvement: Improved accessibility of form confirmation messages. * Improvement: Refactored logic for the dashboard entries chart. * Improvement: Values of fields hidden by conditional logic no longer get saved in the entry. * Fix: Resolved issue where multichoice field images were cut off on the front end. * Fix: Corrected RTL alignment for all blocks. = 1.0.4 - 12th November 2024 = * New: Voice input added for AI Form Builder. * Improvement: Added compatibility check for SureForms Pro version. * Improvement: Increased entries per page and updated form redirect link. * Fix: Ensured compatibility with WordPress 6.7. * Fix: Labels now process HTML tags correctly in emails and entries. = 1.0.3 - 6th November 2024 = * Improvement: Optimized screen reader announcements for field labels, required status and descriptions. = 1.0.2 - 31st October 2024 = * New: Support for query parameters in form confirmation. * New: Updated plugin branding. * Improvement: Added filters for confirmation messages and redirect URLs. * Improvement: Bulk edit options added for the dropdown and multichoice field. * Improvement: Emits custom event srfm_form_submission_success on successful form submission. * Improvement: Merged form confirmation redirect settings. * Fix: Blank entries screen no longer displays after moving all entries to trash. * Fix: Resolved PHP fatal error caused by incorrect argument count in form submission. * Fix: Uploaded files are now removed when an entry is permanently deleted. = 1.0.1 - 24th October 2024 = * Fix: Extra space from the v3 reCAPTCHA container has been removed. * Fix: GDPR and checkbox labels are now editable across Chrome, Firefox, Safari, Arc etc. * Fix: Gutenberg blocks now display correctly for posts, pages, and custom post types (CPT). * Fix: Styling issues resolved for specific blocks in Elementor and Bricks. = 1.0.0 - 22nd October 2024 = * Initial release == Upgrade Notice == = 0.0.13 = From version 0.0.13 we're migrating to a custom database to enhance SureForms' performance and features. This step is necessary and irreversible and your current existing entries will be lost. Thank you for your understanding! home/ephorei/www/wp-content/plugins/background-image-cropper/readme.txt 0000644 00000003245 15006120632 0022376 0 ustar 00 === Background Image Cropper === Contributors: celloexpressions, wordpressdotorg Tags: custom background, background image, cropping, customizer Requires at least: 4.3-beta3 Tested up to: 4.4 Stable tag: 1.2 Description: Adds cropping to backgroud images in the Customizer, like header images have. License: GPLv2 == Description == This plugin is a WordPress core feature-plugin that adds cropping to background images for parity with header images. For this particular feature the implementation is quite simple, but it's starting out as a plugin to gauge user interest in this feature and whether the feature improves the user experience of background images. This plugin requires WordPress 4.3 Beta 3 or later. If you're interested in contributing to this project, ping @celloexpressions on <a href="http://chat.wordpress.org/">WordPress core Slack</a>. Please comment on the trac ticket with ideas and feedback: https://core.trac.wordpress.org/ticket/32403. == Installation == 1. Take the easy route and install through the WordPress plugin adder OR 1. Download the .zip file and upload the unzipped folder to the `/wp-content/plugins/` directory 1. Activate the plugin through the 'Plugins' menu in WordPress 1. Visit the Customizer (Appearance -> Customize) to change your background image and be able to crop it after selecting it. == Screenshots == 1. New cropping step when adding a background image. == Changelog == = 1.0 = * Fix setting handling. = 0.9 = * Initial commit. * Full functionality pending the completion of https://core.trac.wordpress.org/ticket/29211 == Upgrade Notice == = 1.0 = * Fix setting handling. = 0.9 = * Initial commit. home/ephorei/www/wp-content/plugins/suretriggers/readme.txt 0000644 00000140555 15006120641 0020262 0 ustar 00 === OttoKit: All-in-One Automation Platform (Formerly SureTriggers) === Contributors: sujaypawar, wpcrafter Tags: automation, google sheets, webhooks, schedule, SureCart Requires at least: 5.4 Tested up to: 6.8 Stable tag: 1.0.83 Requires PHP: 5.6 License: GPLv3 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html Experience the power of automation within WordPress: Connect 1,000+ apps, automate manual tasks, and unlock your full potential. Get started now! == Description == **OttoKit – THE ALL IN ONE AUTOMATION PLUGIN AND BEYOND (Formerly SureTriggers)** ★★★★★ 👉 [Official Website Link](https://ottokit.com/) 👉 [Try the live demo of OttoKit](https://zipwp.org/plugins/suretriggers/) [youtube https://www.youtube.com/watch?v=MpxE2p8piSw] ## CONNECT YOUR WORDPRESS PLUGINS, APPS & WEBSITES TO CREATE POWERFUL AUTOMATIONS ⚡ ## At OttoKit, our mission is to empower you to connect your favorite apps, automate repetitive tasks, and unlock new growth opportunities for your business. Today, running a business means dealing with a lot of different apps, services, and plugins. On average, organizations use 110 different softwares to run their business. Contact forms, Email marketing tools, Social media sites, Payment gateways, CRMs, Helpdesk, eCommerce plugins, Communication tools, Project management platforms, LMS, and the list goes on. That's a lot of moving pieces! Now the problem is, these are all independent tools. They usually can not communicate with one another, causing a lot of time and energy wasted on manual data entry and other mundane tasks. It also means opportunities are lost when important apps are not connected. Just for an example, imagine a small business owner named Jane. She runs an eCommerce website. When someone places an order on her website, this is what she wants to do: * Add a customer to a CRM * Add the order details to an accounting system. * Upload the invoice to a Google Drive folder that is shared with the accountant * Send a thank-you email to the customer * Then, send this customer another email after 15 days asking for a review. * If the customer leaves a five-star review, send a coupon encouraging the next purchase. * If the customer does not use the coupon, remind them of it 3 days before it expires * She also wants to get a notification of any order above $500 USD in a Slack channel * Also for those large orders, send a message on WhatsApp to make the customer feel special and build a better relationship with them. This is just one simple use case of a small business owner, trying to run and grow her simple eCommerce website. It is just impossible to manually do all of these tasks for each and every order that comes through her website! That's why we created OttoKit. OttoKit is an automation platform that automates processes between different websites, applications, and WordPress plugins. It helps you create powerful workflows to connect your apps and automate repetitive tasks. It can automatically do any number of things in different apps, after something happens. For example: * What happens after someone buys a product * What happens after someone leaves a review * What happens after someone logs into your website * What happens after someone fills out a contact form * What happens when someone takes a quiz in an online course and achieve a certain score Now there are some tools, like Zapier that might help you do some of this. However, they do not connect well with WordPress and are quite expensive. Furthermore, they were made years ago, and their user experience leaves a lot to be desired. Furthermore, many WordPress automation tools suffer from limited integrations, are bloated, and can slow down your website. They require a lot of technical knowledge to use and yet are unreliable. OttoKit is different. OttoKit is the only platform built specifically to seamlessly integrate with WordPress and external applications. We have a modern user interface that is easy to use, and our platform is designed to be lightweight and fast. And most importantly, it doesn't break the bank. Now Jane can easily connect her website to her CRM, accounting system, email marketing platform, and other apps she wants. OttoKit is our way to make sure that businesses, like Jane, can connect their favorite apps, automate mundane tasks, and focus on what truly matters — discover new growth opportunities 📈🙂 [Sign up for free today!](https://ottokit.com/) ### DISCLAIMER: ### OttoKit is a SaaS platform and requires an account on our website. When you install this plugin, you'll need to register for a free account. Or, if you already have an account with us, you can simply connect this plugin to it. This plugin helps you connect your WordPress website to the OttoKit SaaS platform. ## HOW IT WORKS ❓ ## From installation to creating your first automation, OttoKit is designed to be simple and intuitive. Here is how it works: ### Step 1. Install WordPress Plugin 🔌 ### From your WordPress dashboard, navigate to the Plugins menu and click on the "Add New" button. Search for the OttoKit plugin, then click "Install Now" and "Activate". ### Step 2. Connect your WordPress website ⚙️ ### Once the plugin is installed, you will be redirected to the OttoKit settings page in your WordPress dashboard. There you will find a button to connect your WordPress website with the OttoKit platform. If you do not have an account on the platform, you can create it for free in less than 60 seconds. Or if you already have an account, just sign in with your login credentials. All compatible plugins, such as WooCommerce, Fluent Forms, LearnDash, BuddyBoss, etc., will automatically connect to the OttoKit platform during this process. Yaay, you're almost ready to start automating tasks on this website! ### Step 3. Connect other apps 🔗 ### If you want to connect other apps and websites such as Google sheets, MailChimp, Twitter, Stripe, Trello, etc. you can do that now. Just select the apps you use, and follow the instructions to connect your accounts. OttoKit already support hundreds of popular apps, and we're adding more each week! ### Step 4. Choose a trigger 💣 ### After you've connected your apps, you can set up triggers that will start a special task. A trigger is something that happens in one of your connected apps, like receiving a new order in your eCommerce platform. ### Step 5. Add actions ⚡ ### Now you can choose what you want OttoKit to do whenever your chosen trigger is executed. Just pick the app and action you want to use. For example, you might want to pass the details of the customer who placed the order in your email marketing platform like MailChimp. Now whenever the trigger happens, all the actions will be executed automatically. You can create similar automations to connect your favorite apps, automate mundane tasks, and discover new growth opportunities! ## SOME OF THE POWERFUL FEATURES 💪 ## OttoKit is packed with advanced features that will help you streamline your processes and save time. Below are just some of the advanced features it offers: ### Canvas Builder 💙 ### Our standout feature is our intuitive canvas editor in OttoKit. It lets you visually construct your automations by dragging triggers and actions onto the canvas. This makes it simple to visualize your workflow and make adjustments or expansions without coding. ### Multi-step automations 🎉 ### You can make multi-step automations that link actions triggered by events. For instance, you could set up a customer welcome process with emails, course enrollment, and adding to a mailing list. This helps you automate tasks and save time. ### Integrations with WordPress plugins 🤘 ### OttoKit works smoothly with popular WordPress plugins like Gravity Forms, WooCommerce, LearnDash, TutorLMS, FluentCRM, BuddyBoss, CartFlows, SureMembers, Elementor, and more. This allows users to automate actions such as post-purchase processes, website logins, form submissions, course enrollments, quiz completions, and specific score achievements, saving time and effort. ### Integrations with SaaS applications 🪩 ### OttoKit connects with lots of apps, so you can link your favorites together. Want your CRM to talk to your email tool? Or your project manager to sync with your invoicing? OttoKit does it. With a few clicks, set up automations to save time and get more done. ### Automation between multiple WordPress sites 🔗 ### Want to connect one WordPress website to another? For example, if you have WooCommerce installed on one site and LearnDash on another. And whenever someone buys a WooCommerce product, you might want to offer access to a related course which is on another WordPress installation. OttoKit makes it extremely easy. ### Schedule ⏱️ ### The Schedule feature lets you choose when your automations happen. You can pick a time and date for a one-time event or set them to repeat regularly. For instance, you could send a Slack reminder every Friday or back up your website every night. This simplifies tasks that need to be done regularly, fitting your business schedule, whether it's daily, weekly, monthly, or yearly. ### Conditions 🖖 ### OttoKit's Conditions feature allows you to personalize your automations by setting rules for when actions happen. This helps make your automations more precise, quick, and adaptable. You can use Conditions to do tasks like sending messages, updating lists, emailing again, posting on social media, and assigning jobs to team members. ### Filter 🎲 ### This feature is handy in automations with many steps. It lets you decide if the automation keeps going or stops based on a condition. For example, if a customer hasn't bought anything in 30 days, the automation continues. But if they have, it stops. This control helps you manage your automations better. ### Path 🎊 ### The Path feature lets you make automations that can choose different actions depending on specific conditions. For instance, you can create an automation that sends one email if a customer's purchase is big and another if it's small. It helps automate decisions by creating different paths based on conditions. ### Delay ⌛ ### OttoKit's delay feature is handy for adding timing pauses between actions in automations. For instance, you can send a personalized email to customers 90 minutes after they buy something to make them feel valued. Later, you can send another email asking for a review after 15 days. ### Formatters 😎 ### OttoKit Formatter helps you tidy up your data and do calculations easily. It has tools to format, extract, and calculate data the way you want. You can change dates, times, currency, do math, and more. It's all done with a simple, visual interface. ### Custom APIs ➡️ ### OttoKit can share information between your automations and other apps online using APIs. This means you can make something happen in another app when a task finishes in OttoKit. For example, you could make OttoKit send a message on Slack whenever someone orders from your website. Now, you can link your automations to any app that can get API requests fast and easy. ### Incoming Webhooks ⬅️ ### OttoKit uses incoming webhooks to get data from other apps or sites, triggering automations. For example, when someone applies for a job on your site, OttoKit can send them a WhatsApp message by receiving application data through a webhook. ### Dynamic data mapping 🔥 ### Dynamic Data Mapping in OttoKit lets you easily share info between apps. Say you run an online store with WooCommerce and want to send SMS with Twilio. It automatically links customer details like name, phone number, and order info from WooCommerce to Twilio. ### Detailed logs and history 📜 ### OttoKit's Detailed Logs and History feature helps you keep tabs on how well your automations are doing and fix any problems. It shows you exactly what happened at each step. ## WHO CAN BENEFIT FROM OTTOKIT? ## Any individual or organization that wants to automate repetitive tasks and connect different apps can greatly benefit from using OttoKit. * **eCommerce entrepreneurs** can use OttoKit to automate customer notifications, engagement, marketing, shipping tracking, and more. It can also help them integrate their eCommerce store with other business systems such as accounting and customer support. * **eLearning businesses** can use OttoKit to automate various tasks, such as sending reminders to students or sending emails to people who fail a quiz. * **Web design agencies** can use OttoKit to automate notifications, project management, and other tasks. * **Marketing teams** can use OttoKit to automate tasks such as customer segmentation and email campaigns. * **Social media marketers** can use OttoKit to automate notifications, social media updates, and more. It can also help them easily connect their clients' websites to other systems. * **Small business owners** can use OttoKit to connect their business systems and automate key tasks. * **Startups** can use OttoKit to automate various tasks, such as customer sign-ups, billing, and project management. * **HR teams** can use OttoKit to automate onboarding, offboarding, payroll, and other tasks. * **Social media managers** can use OttoKit to automate content creation, reporting, and other tasks. * **Accounting firms** can use OttoKit to automate data entry, document management, and other tasks. *The list could go on and on!* There is no limit to the types of businesses and organizations that can benefit from using OttoKit. From automating marketing and customer service tasks to integrating business systems, OttoKit can make a huge difference in any organization's workflow. Even if you are an individual, OttoKit can be highly beneficial. It can be used to automate mundane tasks such as setting notifications, reminders and tracking. ## SOME OF THE WORDPRESS PLUGINS OTTOKIT SUPPORTS: ## * WooCommerce * SureMembers * Spectra * Presto Player * FluentForms * FluentCRM * CartFlows * BuddyBoss * Gravity Forms * GiveWP * LearnDash * Lifter LMS * MemberPress * Elementor Pro * Tutor LMS * Wishlist Member * WPForms * AffiliateWP * Restrict Content Pro * Beaver Builder * Divi Builder * Bricks Builder * Easy Digital Downloads * myCred * The Events Calendar * MasterStudy LMS ## SOME OF THE POPULAR APPS: ## * SureCart * Google Sheets * WhatsApp * ActiveCampaign * ConvertKit * Circle * Gmail * Google Drive * MailChimp * Slack * Stripe * PayPal * Twitter * Mailerlite * Mailgun * Sendinblue * SMTP * Twilio * TypeForm * Vimeo These are just some of the WordPress plugins and apps that are popular among OttoKit users. If you have apps that are not yet integrated with OttoKit, please [submit a request for integration here.](https://ideas.ottokit.com/boards/requests) We are releasing new integrations every week! And if you are a developer, and would like to integrate your plugin or app — we have robust APIs which make it extremely easy to integrate any WordPress plugin or application with OttoKit. [Please get in touch with us](https://ottokit.com/contact-us/) and we would be happy to help. ## BRANDING GUIDELINE ## OttoKit® is a registered trademark. Please use the following format when mentioning the OttoKit anywhere. * OttoKit [correct] * Otto Kit [incorrect] * Ottokit [incorrect] ## CONNECT WITH OUR TEAM AND COMMUNITY ## [Join our Facebook group community:](https://www.facebook.com/groups/ottokithq) Learn the tricks and techniques that other OttoKit users are using to grow their business. Also, get exciting insider information on upcoming feature releases. == Installation == 1. Upload `suretriggers.zip` to the `/wp-content/plugins/` directory 2. Activate the plugin through the 'Plugins' menu in WordPress == Frequently Asked Questions == = Do I need coding skills to create automations? = No, you don't need any coding skills to create automation with OttoKit! The platform offers a user-friendly interface and a visual workflow builder, allowing you to create automations by dragging and dropping triggers and actions. This means that you can create automations without having to write any code or have any technical expertise. Whether you're a small business owner, a freelancer, or just someone who wants to save time and streamline their workflows, OttoKit makes it easy to create automations without any coding skills. = How does OttoKit compare to other platforms like Zapier? = OttoKit is the only automation platform that is built from the ground up to specifically integrate with WordPress and outside applications. This makes it a powerful and versatile tool for automating tasks within WordPress and between WordPress and external apps and services. One of the key features of OttoKit is its modern and user-friendly interface, which makes it easy for users to create automations by connecting different apps and services and defining triggers and actions, whereas Zapier feels overwhelming and complicated yet does not offer flexibility that is necessary for creating advanced automations. In addition to its powerful features and ease of use, OttoKit offers a sensible pricing, making automations accessible to everyone regardless of their financial status. = How does OttoKit compare to WordPress automation plugins? = OttoKit offers a dedicated plugin to connect your WordPress website with our cloud platform. This allows users to automate tasks both within WordPress and outside of WordPress. One of the key advantages of using OttoKit is that all of the heavy lifting, such as managing queues, webhooks, and integration requests, is done on the cloud platform. This means that your WordPress website stays lean, fast and lightweight. On the other hand, WordPress plugins that offer automation features need a lot of server resources. They make your servers manage queues, save a huge number of log entries in the database, take webhooks, and integration requests. WordPress is not made for such things. It is developed to be a content management system. = Is OttoKit a cloud-based platform or is it a WordPress plugin? = OttoKit is a cloud based automation platform that also offers a WordPress plugin. This plugin serves as a bridge between your WordPress website and the platform. All the heavy lifting necessary for automations is done on the cloud platform, which keeps your website lean, fast and reliable. = Some of my apps are not yet integrated. Can I submit a request? = Yes, if you have apps that are not yet integrated with OttoKit, please submit a request for integration. We offer a wide range of integrations with hundreds of popular apps, plugins and services, and we are always looking for adding more. == Screenshots == 1. Dashboard of your task consumption. 2. Create new automations. 3. Explore Recipes. 4. Create new folders. 5. Organization & Workspaces. 6. Create new connections to create your automations. 7. Manage Settings. 8. Workspace Notification Settings. == Changelog == = Version 1.0.83 - Monday, 21st April 2025 = * Important fixes = Version 1.0.82 - Tuesday, 15th April 2025 = * Improvement: Make WordPress 6.8 compatible * Improvement: "WordPress" - Enhanced response data for "New Comment on Post" Trigger = Version 1.0.81 - Friday, 11th April 2025 = * Improvement: "WS Form" - Added improvements for execution of "Form Submitted" Trigger = Version 1.0.80 - Monday, 7th April 2025 = * Improvement: Rebranded as OttoKit from SureTriggers: All-in-One Automation Platform * Improvement: "Modern Events Calendar" - Added new "Event Created" Trigger * Improvement: "WP Fusion" - Added Support for Tag Selection & Creation in "Add Tag to User" Action * Improvement: "WordPress" - Added new "Update Comment Status" Action * Improvement: "LearnDash" - Added new "Find Course Taxonomies" Action = Version 1.0.79 - Thursday, 3rd April 2025 = * Fix: This update addressed a security bug. Props to mikemyers for privately reporting it to our team. Please make sure you are using the latest version on your website. = Version 1.0.78 - Tuesday, 1st April 2025 = * New: Added "FluentBoards" Integration * Improvement: "WordPress" - Added fix for the featured image response and updated the action hook in "Post Created / Updated" Trigger * Improvement: "WordPress" - Added fix for the taxonomy adding in "Create / Update Post" Action * Improvement: "UltimateMember" - Added fix for response data difference in "User logs in with a form" and "User registers with a form" Triggers * Improvement: "FluentCommunity" - Added improvements in actions for better flexibility * Improvement: "FluentCRM" - Added new "Add Note" Action * Improvement: "SureMail" - Added improvements in sample response for Triggers * Improvement: "Gravity Forms" - Added improvements in response data for form submission Triggers = Version 1.0.77 - Tuesday, 18th March 2025 = * Improvement: "LearnDash" - Added new "Find User Groups" Action * Improvement: "LearnPress" - Added improvements in "Enroll User to Course" and "Remove User from course" Actions * Improvement: "WordPress" - Added empty response improvements in "Assign Role To User" and "Remove Role from User" Actions * Improvement: "LatePoint" - Added new "Create Bundle Order" Action = Version 1.0.76 - Wednesday, 12th March 2025 = * Fixed: Added improvement to REST API route registration = Version 1.0.75 - Tuesday, 11th March 2025 = * New: Added "FluentCommunity" Integration * Improvement: "SureMail" - Added new "Mail Blocked" Trigger * Improvement: "WordPress" - Added new "Find Posts" and "Add Taxonomy to Post" Actions * Improvement: "WordPress" - Added improvement of featured image in "Post Created / Updated" Trigger * Improvement: Added new endpoint for connection creation with SureTriggers = Version 1.0.74 - Thursday, 27th February 2025 = * Improvement: "LatePoint" - Added Coupon Actions & Group Booking Support in Booking Actions * Improvement: Enhanced WordPress connection reliability by pinging our server twice and sending a notification if no ping is received * Improvement: "bbPress" - Added response data improvements in "Topic Created" and "Reply To Topic" Triggers = Version 1.0.73 - Monday, 24th February 2025 = * Improvement: "Fluent Support" - Added new "Block User" Action * Improvement: "Easy Digital Downloads" - Added improvement for "User has purchased a download" Action * Improvement: "WordPress" - Added improvement for "Create / Update User" Action using username * Improvement: "WooCommerce" - Added improvement for "Product Purchased" Trigger = Version 1.0.72 - Monday, 17th February 2025 = - New: Added "SureMail" Integration - Improvement: "Easy Digital Downloads" - Added new "Create Discount" Action - Improvement: "WP Courseware" - Added improvement in "Remove user from course" Action = Version 1.0.71 - Tuesday, 4th February 2025 = * New: Added the submenu with a "Status" tab for viewing registered events and an "Outgoing Requests" tab for tracking plugin initiated request * Improvement: "WordPress" - Added custom taxonomy support in "Create Category" Action * Improvement: "Voxel" - Added new Triggers, updated existing Triggers to compatible with the Voxel version * Improvement: "FluentCRM" - Added support for tag input and creation of non-existing tags in Actions * Improvement: "wpForo" - Added improvement for title field in "Create Topic" Action * Improvement: "Amelia" - Added improvements for Events related Triggers = Version 1.0.70 - Wednesday, 15th January 2025 = * Improvement: "wpForo" - Fixed issues related to "Create Topic" Action * Improvement: "FluentCRM" - Added support of multiple tags and lists and resolved campaign retrieving issue in "Send Email" Action * Improvement: "Voxel" - Updated "Add Post to Wall" and "Add Post to Profile Wall" Actions to newer version = Version 1.0.69 - Wednesday, 1st January 2025 = * Improvement: "WooCommerce" - Fixed issues related to order triggers * Improvement: "Divi" - Enhanced integration to support both the theme and plugin * Improvement: "UltimateMember" - Improved handling of custom fields for trigger responses * Improvement: "Trigger Button" - Enabled Trigger Button functionality on page templates * Improvement: "WordPress" - Added support for the parent category field in the "Create Category" Action * Improvement: "WooCommerce Subscriptions" - Added improvement for listing subscriptions products = Version 1.0.68 - Thursday, 19th December 2024 = * Improvement: "WordPress" - Added fix for twice running "Post Created / Updated" Trigger * Improvement: "SureFeedback" - Added improvements for response in Triggers * Improvement: "bbPress" - Added improvement to map forum ID in "Subscribe User in Forum" Action * Improvement: "LatePoint" - Added improvements to "Create Booking" and "Update Booking" Actions = Version 1.0.67 - Wednesday, 11th December 2024 = * New: Added "FluentSMTP" Integration * Improvement: "Presto Player" - Added improvements for creating posts with Presto Video URL in the "Create Media Hub" Action * Improvement: "WooCommerce Bookings" - Added fix for response in "Booking Created" Trigger * Improvement: "FluentCRM" - Added improvements in error status in Actions * Improvement: "ConvertPro" - Added improvements in response data in "Form Submitted" Trigger = Version 1.0.66 - Friday, 15th November 2024 = * Improvement: "WordPress" - Added fix for featured image response data in WordPress Triggers = Version 1.0.65 - Wednesday, 13th November 2024 = * New: Added "ProfileGrid" Integration * Improvement: "WordPress" - Added improvements for featured image data in "Post Created" Trigger * Improvement: "WordPress" - Added improvements for post excerpt in "Create/Update Post" Action and added new "Update Post Excerpt" Action * Improvement: "WooCommerce" - Added improvements for SKU data in Triggers * Improvement: Make WordPress 6.7 compatible = Version 1.0.64 - Wednesday, 30th October 2024 = * Improvement: "bbPress" - Added improvements for response data in Triggers * Improvement: "SureForms" - Added improvements in "Send Data" Action = Version 1.0.63 - Friday, 18th October 2024 = * Improvement: "Meta Box" - Added new Actions * Improvement: "bbPress" - Improved the topic status functionality in the "Add Topic in Forum" Action * Improvement: "Gravity Forms" - Added spam entry check in the "Form Submitted" Trigger * Improvement: "The Events Calendar" - Improved the fetch data response for "New Attendee" and "Attendee Registered for Event" Triggers * Improvement: "Thrive Leads" - Improved the response for "Form Submitted" Trigger = Version 1.0.62 - Thursday, 10th October 2024 = * New: Added "Support Portal for SureCart" Integration * Improvement: "BuddyBoss" - Improved the map field functionality in the "Send Message To Group Members" Action * Improvement: "Voxel" - Added improvement in "Send Direct Message" Action = Version 1.0.61 - Wednesday, 2nd October 2024 = * Improvement: "CartFlows" - Added new Triggers * Improvement: "SureForms" - Added new Action * Improvement: "Advanced Custom Fields" - Added new Actions * Improvement: "WooCommerce" - Resolved checkbox issue for "Create Coupon" Action * Improvement: "Bricks Builder" - Resolved trigger response issue with name attribute for "Form Submitted" Trigger * Improvement: "BuddyBoss" - Added improvement for different field types in "Set User Extended Profile" Action * Improvement: "LearnDash" - Added improvements for group courses in Triggers * Improvement: "WordPress" - Added improvement for default taxonomy in "Create/Update Post" Action * Improvement: "WordPress" - Added new Actions = Version 1.0.60 - Wednesday, 18th September 2024 = * Improvement: "WordPress" - Added support for taxonomy and featured images in "Create/Update Post" Action * Improvement: "WooCommerce Subscriptions" - Added new Actions * Improvement: "Voxel" - Added status field support for "Update Post" Action = Version 1.0.59 - Thursday, 5th September 2024 = * Improvement: "BuddyBoss" - Added new Triggers * Improvement: "Powerful Docs" - Added improvements in "Feedback Received" Trigger and removed deprecated Action * Improvement: "LearnDash" - Added improvements in "User Added to Group" Trigger and added new "List User Enrolled Courses" Action = Version 1.0.58 - Tuesday, 3rd September 2024 = * New: Added "Services For SureCart" Integration * Improvement: "Voxel" - Added new Triggers and Actions * Improvement: "Advanced Custom Fields" - Added fix for listing fields in Actions * Improvement: "TutorLMS" - Added fix for response in "User Enrolls in Course" Trigger * Improvement: "LatePoint" - Added fix for listing custom fields in Actions = Version 1.0.57 - Tuesday, 20th August 2024 = * Improvement: "Bricks Builder" - Added improvements for form response with empty labels * Improvement: "Groundhogg" - Added fix for listing tags in Actions * Fix: Multilingual WordPress sites URL issue = Version 1.0.56 - Thursday, 15th August 2024 = * Improvement: "Advanced Custom Fields" - Enhanced response for "Field Updated on Post" Trigger * Improvement: "FluentCRM" - Added improvements for lists and tags for "Send Email" Action and added new Actions * Improvement: "WordPress" - Added new Actions * Improvement: "Wishlist Member" - Added new Actions * Improvement: "MailPoet" - Added improvements for "Add New Subscriber" and "Update Subscriber Status" Actions * Improvement: "The Events Calendar" - Added improvements for "Attendee Registered for Event" Trigger * Improvement: "SureMembers" - Added improvements for "User Removed From Access Group" Trigger * Improvement: "GiveWP" - Added improvements for "User Continues Recurring Donation" and "Recurring Donation Cancelled" Triggers * Fix: Scroll issue on the flyout = Version 1.0.55 - Monday, 29th July 2024 = * Improvement: "Advanced Custom Fields" - Fixed "Any Field" issue for "Field Updated on Post" Trigger * Improvement: "Presto Player" - Fixed fetch data issue for Trigger response and added new Action = Version 1.0.54 - Friday, 26th July 2024 = * Improvement: "Advanced Custom Fields" - Fixed issue and enhanced "Field Updated on Post" Trigger * Improvement: "The Events Calendar" - Added two new Triggers * Improvement: "LatePoint" - Enhanced WP user support in "Create Agent" Action * Improvement: "SureFeedback" - Enhanced Triggers response and added new Action * Improvement: "Presto Player" - Enhanced Triggers response = Version 1.0.53 - Wednesday, 17th July 2024 = * Improvement: Make WordPress 6.6 compatible = Version 1.0.52 - Friday, 12th July 2024 = * Improvement: "GiveWP" - Fixed pagination issue in form listing * Improvement: "WooCommerce" - Added new "Get Order Details by Order ID" Action * Improvement: "JetFormBuilder" - Enhanced the "Form Submitted" Trigger response for JSON-type form field values * Improvement: "Trigger Button" - Enhanced the "Button Clicked" Trigger response to include the parent post id and title = Version 1.0.51 - Tuesday, 2nd July 2024 = * Improvement: "Voxel" - Enhanced Post related Triggers * Improvement: "WordPress" - Added user registration date to user-related data response = Version 1.0.50 - Monday, 24th June 2024 = * Improvement: "myCred" - Added new Actions * Improvement: "Voxel" - Added new Triggers and Actions, and enhanced order Triggers response * Improvement: "LatePoint" - Added WP user support in "Create Agent" Action * Improvement: "AffiliateWP" - Added improvement for referral amount in "WooCommerce Product Purchased using Affiliate Referral" Trigger * Improvement: "GiveWP" - Added support for custom field data in Triggers * Improvement: "Easy Digital Downloads" - Added support for custom field data in Triggers * Improvement: "Jetpack CRM" - Added new Action = Version 1.0.49 - Tuesday, 4th June 2024 = * Improvement: "Voxel" - Enhanced Order related Triggers * Improvement: "BuddyBoss" - Enhanced "Create Group" Action with Group Type support * Improvement: "AffiliateWP" - Fixed the issue in "WooCommerce Product Purchased using Affiliate Referral" Trigger = Version 1.0.48 - Monday, 3rd June 2024 = * Fix: This update addressed a security bug. Props to Krzysztof Zając for privately reporting it to our team. Please make sure you are using the latest version on your website. = Version 1.0.47 - Wednesday, 29th May 2024 = * New: Added "Sensei LMS" Integration * New: Added "Voxel" Integration * Improvement: "WooCommerce" - Fixed issue in "Customer Created" Trigger * Improvement: "Amelia" - Added new status to the status list field = Version 1.0.46 - Tuesday, 30th April 2024 = * New: Added "Simply Schedule Appointments" Integration * New: Added "Mail Mint" Integration * New: Added "Better Messages" Integration * New: Added "Appointment Hour Booking" Integration * Improvement: "Modern Events Calendar" - Fixed pagination issue in events list * Improvement: "MemberPress" - Added new Triggers and Actions * Improvement: "wpForo" - Added new Actions * Improvement: "LatePoint" - Added support for Custom Fields and Multiple Person Booking add-ons * Improvement: "MasterStudy LMS" - Fixed pagination issue in fields and issues in Actions & Triggers * Improvement: "UltimateMember" - Fixed issue in form names in Form listing = Version 1.0.45 - Friday, 5th April 2024 = * Improvement: "WooCommerce" - Added shipping details data to Orders Trigger * Improvement: "Gravity Forms" - Improved Trigger response * Improvement: "SureForms" - Enhanced integration = Version 1.0.44 - Thursday, 28th March 2024 = * Improvement: "Bricks Builder" - Fixed a form listing issue * Improvement: "SliceWP" - Resolved a response warning issue * Improvement: "WPLoyalty" - Addressed a sample data issue for Triggers = Version 1.0.43 - Thursday, 28th March 2024 = * New: Added "SliceWP" integration. * New: Added "Ninja Tables" integration. * New: Added "Paymattic" integration. * New: Added "WPLoyalty" integration. * Improvement: "PeepSo" - Added new Triggers and Actions. * Improvement: "Amelia" - Added tag data in Events Triggers. * Improvement: "FluentCRM" - Added "Create/Update" Tag Action. * Improvement: "FluentCRM" - Fixed an issue with custom fields in the "Add/Update Contact" Action. * Improvement: "WP Fusion" - Added new Triggers and Actions. * Improvement: "Spectra" - Added support for Custom Post types in Spectra form listings. * Improvement: "WP Simple Pay" - Added new Triggers. * Improvement: "Fluent Booking" - Fixed issue in fetching data for Triggers. * Improvement: "Easy Digital Downloads" - Added customer address in fetching data for Triggers. = Version 1.0.42 - Thursday, 21st March 2024 = * Improvement: "WordPress" - Custom meta response added to Triggers * Improvement: "WooCommerce" - Issue resolved in fetching data for "Product Purchased" Trigger = Version 1.0.41 - Wednesday, 6th March 2024 = * New: Added "GeoDirectory" Integration * New: Added "Asgaros" Integration * Improvement: "LearnPress" - Added new Actions * Improvement: "LearnDash" - Added new Triggers and Actions * Improvement: "The Events Calendar" - Added new Trigger * Fix: "Bricks Builder" - Fixed form listing issue = Version 1.0.40 - Friday, 23rd February 2024 = * Improvement: "FluentCRM" - Fixed the custom fields save issue in the "Add/Update Contact" Action * Improvement: "WishList Member" - Fixed a fatal error for all Actions = Version 1.0.39 - Monday, 19th February 2024 = * Improvement: "Gravity Forms" - Added new Triggers and Actions * Improvement: "BuddyBoss" - Added new Triggers and Actions * Improvement: "WordPress" - Added additional response data in the "Post Viewed" Trigger * Improvement: "WordPress" - Added category data in response for the "Post Created/Updated" Trigger * Improvement: "TutorLMS" - Added new Triggers and Actions * Improvement: "Fluent Support" - Added new Triggers and Actions = Version 1.0.38 - Wednesday, 7th February 2024 = * New: Added "Fluent Booking" Integration * Improvement: "WishList Member" - Added more data in response for Triggers and Actions * Improvement: "GiveWP" - Added new Triggers and Actions * Improvement: "LifterLMS" - Added new Triggers and Actions * Improvement: "Fluent Forms" - Added new Trigger * Improvement: "Bricks Builder" - Fixed form listing issue for "Form Submitted" Trigger * Improvement: "Spectra" - Fixed form listing issue for "Form Submitted" Trigger = Version 1.0.37 - Monday, 29th January 2024 = * Improvement: "WooCommerce Subscriptions" - Added required changes for checkout fields in all Triggers response = Version 1.0.36 - Monday, 29th January 2024 = * Improvement: "WooCommerce Subscriptions" - Added necessary conditions in all Actions = Version 1.0.35 - Tuesday, 23rd January 2024 = * Improvement: "BuddyBoss" - Fixed preview link issue for "Add Post to Activity Stream of Group" Action * Improvement: "WooCommerce Subscriptions" - Fixed response issue for "User Subscription Updated" Trigger = Version 1.0.34 - Wednesday, 17th January 2024 = * Improvement: "ElementorPro" - Added new Triggers * Improvement: "MemberPress" - Fixed an issue related to sending welcome emails in the "Add to Membership" Action * Improvement: "FluentCRM" - Added new Triggers and Actions * Improvement: "Restrict Content Pro" - Added new Triggers * Improvement: "Events Manager" - Added new Triggers * Improvement: "WooCommerce" - Add support for "WooCommerce" newer version = Version 1.0.33 - Thursday, 4th January 2024 = * Improvement: "WooCommerce" - Added a new Trigger - "Product Category Purchased" * Improvement: "Amelia" - Added new Triggers * Improvement: "LearnDash" - Added new Triggers - "User Passes Quiz" and "User Fails Quiz" * Fixed: "Wordpress" - "Comment Approved" Trigger = Version 1.0.32 - Monday, 25th December 2023 = * New: Added "Academy LMS" Integration * Improvement: "BuddyBoss" - Fixed an issue with preview links in the "Add Post to Activity Feed" Action * Improvement: "BuddyBoss" - Added a new field in the "Add Post to Activity Feed" Action * Improvement: "WishList Member" - Added a new action, "Add/Update Member" * Improvement: "JetFormBuilder" - Fixed an issue with the response in the "Form Submitted" Trigger * Improvement: "Advanced Custom Fields" - Added new Trigger and Actions * Improvement: "WooCommerce Subscriptions" - Improved user details in all Triggers * Improvement: "AffiliateWP" - Added new Triggers and Actions * Improvement: "myCred" - Added a field in the "Award Points" Action * Improvement: "WordPress" - Added an option to Select Post Type in the "View Post" Trigger * Fixed: "FluentForms" - File upload link error = Version 1.0.31 - Tuesday, 5th December 2023 = * New: Added "SureForms" Integration * New: Added "Powerful Docs" Integration * New: Added new Actions in "LatePoint" Integration * Improvement: "FluentCRM" - Fixed issue for custom fields in "Add/Update Contact" Action * Improvement: "Fluent Support" - Updated all Triggers and added "Create Ticket" Action * Improvement: "The Events Calendar" - Fixed issue in "Register New Attendee" Trigger * Improvement: "WordPress" - Fixed issue in "Create/Update Post" Action * Improvement: "WooCommerce" - Fixed workflow multiple run issue in "Order Paid" Trigger * Improvement: "WooCommerce Bookings" - Updated all Triggers = Version 1.0.30 - Tuesday, 28th November 2023 = * New: Added new Action "Find Orders by User ID" in "WooCommerce" Integration * Improvement: "WooCommerce" - Added few new options in "Create Order" and "Create Coupon Code" Action * Improvement: "WooCommerce" - Fixed category issue in "Create Coupon" Action * Improvement: "WooCommerce Subscriptions" - Added few new options in "Create Subscription Order with Product" Action * Improvement: "WooCommerce Subscriptions" - Updated "User Renewal Subscription Payment Failed" Trigger * Improvement: "Spectra" - Updated "Form Submitted" Trigger = Version 1.0.29 - Tuesday, 7th November 2023 = * New: Added "Masteriyo" Integration * New: Added new Actions in "EDD" Integration * New: Added new Triggers in "LearnDash" Integration = Version 1.0.28 - Wednesday, 1st November 2023 = * New: Added new Action "Find User by Email" in "WordPress" Integration * New: Added new Action "Remove User Meta" in "WordPress" Integration * New: Added new Action "Find Subscriptions by User ID" in "WooCommerce Subscriptions" Integration = Version 1.0.27 - Thursday, 26th October 2023 = * New: Added "Easy Affiliate" Integration * New: Added "WooCommerce Bookings" Integration * New: Added new Action "Change Member Profile Type" in "BuddyBoss" Integration * New: Added new Action "Set User Extended Profile" in "BuddyBoss" Integration * New: Added new Actions and Triggers in "WooCommerce" Integration * New: Added new Actions and Triggers in "WooCommerce Subscriptions" Integration * New: Added new Action "Change User Membership Plan" in "WooCommerce Memberships" Integration * New: Added new Trigger "User's Membership Status Changed" in "WooCommerce Memberships" Integration * Improvement: "WordPress" - Added option for Custom Post Type in "New Comment On Post" Trigger = Version 1.0.26 - Monday, 16th October 2023 = * New: Added "Groundhogg" Integration * New: Added "WP Courseware" Integration * Improvement: "EDD" - Added a new Trigger - "Product Purchased" * Improvement: "WooCommerce" - Added a new Action - "Update Status of Order" * Improvement: "WordPress" - Added "Password Reset Link" in response for "Create User" Action and "User Created" Trigger * Fix: "WordPress" - Fixed a bug in the "Send Email" Action = Version 1.0.25 - Wednesday, 27th September 2023 = * New: Added "RafflePress" Integration * New: Added "wpForo Forum" Integration * New: Added "WooCommerce ShipStation" Integration * Improvement: WordPress - Make Author field as dynamic field in Create/Update Post Action = Version 1.0.24 - Wednesday, 20th September 2023 = * New: Added "WS Form" Integration * New: Added "LearnDash Achievements" Integration * New: Added "Advanced Ads" Integration * New: Added "Newsletter" Integration * New: Added "Thrive Leads" Integration * Improvement: "WooCommerce Subscription" - Added New Trigger - User Subscription Updated * Improvement: "EDD" - Added user_and and customer_id in response = Version 1.0.23 - Tuesday, 12th September 2023 = * New: Added "Modern Events Calendar" Integration * New: Added "Advanced Coupons" Integration * New: Added New Action "Find User By ID" in "WordPress" Integration * New: Added New Action "Subscription Renewal" in "EDD" Integration = Version 1.0.22 - Wednesday, 6th September 2023 = * New: Added "Modern Events Calendar" Integration * New: Added "WP-Polls" Integration * New: Added "Meta Box" Integration * New: Added "Advanced Coupons" Integration * New: Added "Advanced Custom Fields" Integration * New: Added "WP Fusion" Integration * New: Added "Contact Form 7" Integration * Improvement: Amelia - Added custom fields support in all Triggers responses * Improvement: GamiPress - Fixed issue in "Award Points To User" Action * Improvement: Formidable Forms - Fixed issue in pagination of the form list * Improvement: WordPress - Added a new improvement to exclude roles users wish to keep unchanged when updating a user's role in "Create/Update User" action = Version 1.0.21 - Wednesday, 16th August 2023 = * Improvement: WordPress - Add support of json values in Set User Meta Action = Version 1.0.20 - Thursday, 10th August 2023 = * New: Added "WP User Manager" Integration * Improvement: FluentCRM - Added new Trigger "New Contact Added" * Improvement: WordPress - Added new Action "Remove User" * Improvement: WordPress - updated response in "Post Created" Trigger = Version 1.0.19 - Thursday, 03rd August 2023 = * Improvement: Elementor Pro - Fixed form listing issue in "Form Submitted" Trigger * Improvement: BuddyBoss - Added new Trigger "User's Profile Type Changed" * Improvement: GamiPress - Fixed Pagination issue * Improvement: WooCommerce - Updated "Product Purchased" Trigger = Version 1.0.18 - Tuesday, 25th July 2023 = * New: Added "WP All Import" Integration * New: Added "GravityKit" Integration * New: Added "Wp Simple Pay" Integration * Improvement: WooCommerce - Added "comment_author_email" field in response in Product Reviewed Trigger * Improvement: WordPress - Added new improvement to add multiple user role if user already exists in "Create/Update User" action * Improvement: WooCommerce - Fixed bug for "Purchase Created" Trigger * Improvement: Added User's meta in LearnDash Trigger = Version 1.0.17 - Wednesday, 12th July 2023 = * New: LearnDash - Added "Course is marked complete for user" Action * Improvement: WordPress - Fixed the "From Name and From Email" issue in Send Email Action * Improvement: WordPress - Added improvement to not update user role if current role is higher than the role specified * Improvement: Updated Video in Connection page = Version 1.0.16 - Thursday, 29th Jun 2023 = * New: Added "BuddyPress" Integration * Improvement: Added default styling for "Trigger Button" as per default theme = Version 1.0.15 - Monday, 26th Jun 2023 = * New: BuddyBoss - Added "Add Post To Activity Feed" Action * New: Added "Trigger Button" Integration * Improvement: Changed label for "Settings" in WordPress plugins page. * Improvement: Added "Select Download" option in Easy Digital Downloads Integration = Version 1.0.14 - Tuesday, 13th Jun 2023 = * New: Added FunnelKit Integration * New: Added Kadence Forms Integration * New: Added Software Licensing Triggers in Easy Digital Downloads Integration * New: Added "Find User's Meta" action in WordPress Integration * New: Added Jetpack CRM integration * Improvement: Fluent CRM - Fixed issue for double option emails in Add/Update Contact event * Improvement: WordPress - Added additonal response data in Create Comment on Post event * Improvement: WordPress - Fixed first name and last name issue for "Create User" event * Improvement: GamiPress - Fixed fetch data issue = Version 1.0.13 - Monday, 22nd May 2023 = * New: Added Events Manager Integration * New: Added WooCommerce Memberships Integration * Improvement: Fixed issue for Spectra Forms list when form is inside the container * Improvement: WooCommerce - improvements in "Product Purchased" trigger * Improvement: WooCommerce Subscription - Fixed Fetch Data not working issue * Improvement: Paid Memberships Pro - Fixed Fetch Data not working issue = Version 1.0.12 - Wednesday, 10th May 2023 = * New: Added WooCommerce Subscription Integration * New: Added MetForm Integration * New: Added Fluent Support Integration * New: Added Pie Forms Integration * New: Added Ninja Forms Integration * New: Added LearnPress Integration * New: Added MemberPress Integration = Version 1.0.11 - Tuesday, 9th May 2023 = * Fix: WordPress warning for bbPress = Version 1.0.10 - Wednesday, 3rd May 2023 = * New: Added JetEngine Integration * New: Added FormidableForms Integration * New: Added JetFormBuilder Integration * New: Added Forminator Integration * New: Added GamiPress Integration * New: Added MemberPress Integration * New: Added bbPress Integration * Improvement: WordPress - Fixed the issue for Create/Updated post trigger * Improvement: WordPress - Added recent dynamic data for the trigger User Role Added/User Role Updated * Improvement: FluentCRM - Added multiple tags dynamic data in Tag Added trigger * Improvement: BuddyBoss - Fixed the issue for hidden/private groups not getting fetched = Version 1.0.9 - Wednesday, 26th April 2023 = * New: Added ProjectHuddle Integration * New: Added MasterStudy LMS Integration * New: Added Ultimate Member Integration * Improvement: Added functionality for create/update Post in one action "Create/Update" * Improvement: Added new action "Send Message" in BuddyBoss Integration = Version 1.0.8 - Thursday, 23rd March 2023 = * Improvement: Made woocommerce order trigger compatible with optin pages. * Implemented: Added coupon name & other coupon details in trigger response for woocommerce order created trigger. = Version 1.0.7 - Tuesday, 21st February 2023 = * New: Added new integrations for MailPoet & ConvertPro. * Improvement: Made plugin compatible with PHPStan. * Improvement: Made plugin compatible with WordPress-VIP-Go standard. * Improvement: Added customer line items, information, and coupon codes in the response to triggers for WooCommerce. * Improvement: Updated triggers response to more appropriate data. * Fix: Displayed group options in the dropdown for BuddyBoss groups. = Version 1.0.6 - Tuesday, 7th February 2023 = * New: integration for WP Job Manager, PeepSo, BadgeOS. * Improvement: Moved back SureTriggers icon on top level menu. * Improvement: Updated readme file. * Fix: FluentCRM - Fixed custom fields display issue. * Fix: FluentCRM - Save data of custom fields. * Fix: FluentCRM - Implemented proper validations on custom fields. = Version 1.0.5 - Friday, 20th January 2023 = * Fix: Dashboard notice was displaying when user is connected. * Fix: SAAS dashboard displaying in fullscreen. = Version 1.0.4 - Friday, 20th January 2023 = * New: Added a notice for first time users to help them to connect with SureTriggers. * Improvement: Moved SureTriggers menu under general settings. * Improvement: Removed Settings page and managed 'disconnect' functionality from SAAS. * Fix: FluentForm fields were not fetching in the trigger * Fix: ActiveCampaign add/update action failing = Version 1.0.3 - Monday, 2nd January 2023 = * Initial Release == Upgrade Notice == home/ephorei/www/wp-content/themes/twentytwentyfive/readme.txt 0000644 00000020371 15006120773 0021017 0 ustar 00 === Twenty Twenty-Five === Contributors: wordpressdotorg Requires at least: 6.7 Tested up to: 6.7 Requires PHP: 7.2 Stable tag: 1.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html == Description == Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide. == Changelog == == Copyright == Twenty Twenty-Five WordPress Theme, (C) 2024 WordPress.org and contributors. Twenty Twenty-Five is distributed under the terms of the GNU GPL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This theme incorporates code from: Twenty Twenty-Four WordPress Theme, (C) 2023 WordPress.org License: GPLv2 or later. License URI: http://www.gnu.org/licenses/gpl-2.0.html This theme bundles the following third-party resources: === Fonts === .ttf files downloaded from fonts.google.com have been converted to .woff2 using https://github.com/google/woff2 Fira Code Font Copyright (c) 2014, The Fira Code Project Authors License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Reference: https://github.com/tonsky/FiraCode Source: https://fonts.google.com/specimen/Fira+Code Manrope Font Copyright (c) 2018 The Manrope Project Authors License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Reference: https://github.com/sharanda/manrope Source: https://fonts.google.com/specimen/Manrope Vollkorn Font Copyright (c) 2005–2018, Friedrich Althausen License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Reference: https://github.com/FAlthausen/Vollkorn-Typeface Source: https://fonts.google.com/specimen/Vollkorn Fira Sans Font Digitized data copyright (c) 2012-2015, The Mozilla Foundation and Telefonica S.A. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Reference: https://github.com/mozilla/Fira Source: https://fonts.google.com/specimen/Fira+Sans Platypi Font License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Reference: https://github.com/d-sargent/platypi Source: https://fonts.google.com/specimen/Platypi Ysabeau Office Font License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Reference: https://github.com/CatharsisFonts/Ysabeau Source: https://fonts.google.com/specimen/Ysabeau+Office Literata Font License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Reference: https://github.com/googlefonts/literata Source: https://fonts.google.com/specimen/Literata Roboto Slab Font License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Reference: hhttps://github.com/googlefonts/robotoslab Source: https://fonts.google.com/specimen/Roboto+Slab Beiruti Font License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Reference: https://github.com/googlefonts/beiruti Source: https://fonts.google.com/specimen/Beiruti === Images === Northern Buttercups. Free public domain CC0 image. northern-buttercups-flowers.webp https://www.rawpixel.com/image/8802603 License: CC0 https://creativecommons.org/publicdomain/zero/1.0/ Small totara tree on ridge above Long Point, Porirua Harbour, by Leslie Adkin. Free public domain CC0 image. 404-image.webp https://www.rawpixel.com/image/13029755 Old gray paris map. Free public domain CC0 image. location.webp https://www.rawpixel.com/image/6033837 Delphinium (Larkspur). Free public domain CC0 image. delphinium-flowers.webp https://www.rawpixel.com/image/2224378 Campanula Alliariifolia (Cornish Bellflower). Free public domain CC0 image. campanula-alliariifolia-flower.webp https://www.rawpixel.com/image/2222755 Centaurea Ruthenica(Star Thristle). Free public domain CC0 image. star-thristle-flower.webp https://www.rawpixel.com/image/2211732 Botany flowers. Free public domain CC0 image. botany-flowers.webp botany-flowers-closeup.webp https://www.rawpixel.com/image/8812207 Person typing on a typewriter. Free public domain CC0 image. typewriter.webp https://www.rawpixel.com/image/12240004/photo-image-face-person-technology Woman wearing a traditional nurse's cap, photographed from behind. nurse.webp Free public domain CC0 image. https://www.rawpixel.com/image/8782633/photo-image-person-white Woman splashing water, at Lake George. woman-splashing-water.webp Free public domain CC0 image. https://www.rawpixel.com/image/9758986/photo-image-people-art-vintage Man in hat, standing in front of a building. man-in-hat.webp Free public domain CC0 image. https://www.slam.org/collection/objects/62642/ African Woman by Pascal Sébah and Jean Pascal Sébah Free public domain CC0 image. agenda-img-4.webp https://www.rawpixel.com/image/14263497 Two Girls, Mill Workers by Lewis W Hine. Free public domain CC0 image. link-in-bio-background.webp https://www.rawpixel.com/image/14265869 Cliff Palace, Mesa Verde National Park, Colorado (vertical orientation) Free public domain CC0 image. poster-image-background.webp ruins-image.webp https://www.rawpixel.com/image/8802835 Flower meadow in Llano, Texas. Free public domain CC0 image. coming-soon-bg-image.webp flower-meadow-square.webp services-subscriber-photo.webp https://www.rawpixel.com/image/8800058 Hibiscus flower. Free public domain CC0 image. grid-flower-1.webp red-hibiscus-closeup.webp https://www.rawpixel.com/image/8799471 Phacelia tanacetifolia (Lacy Phacelia) enlarged 4 times from Urformen der Kunst (1928) by Karl Blossfeldt. Free public domain CC0 image. grid-flower-2.webp https://www.rawpixel.com/image/2222743 At Hawaiian Greenhouse, Inc, near Pahoa, anthuriums grow under a sun screen. Free public domain CC0 image. category-anthuriums.webp https://www.rawpixel.com/image/8799473 Sunflower Free public domain CC0 image. category-sunflowers.webp https://www.rawpixel.com/image/8799614 Detail of cactus "Saguaros, Saguro National Monument," Arizona. Photographer: Adams, Ansel, 1902-1984 Free public domain CC0 image. category-cactus.webp https://www.rawpixel.com/image/8799351 Vash Gon - Jicarilla by Edward S Curtis. Free public domain CC0 image. vash-gon-square.webp https://www.rawpixel.com/image/14262822 One of the 40 Or More Species of Coral at John Pennekamp Coral Reef State Park, a Few Miles Off Key Largo. Free public domain CC0 image. coral-square.webp https://www.rawpixel.com/image/8799931 Parthenon op de Akropolis in Athene (westzijde) (c. 1880 - c. 1890) by Rhomaides Frères. Free public domain CC0 image. parthenon-square.webp https://www.rawpixel.com/image/13759051 Near East Dallas Creek, 05/1972. Photographer: Norton, Boyd. Free public domain CC0 image. dallas-creek-square.webp https://www.rawpixel.com/image/8802688 Marshland birds at the Lake Havasu National Wildlife Refuge. Free public domain CC0 image. marshland-birds-square.webp https://www.rawpixel.com/image/8799403 Photograph - New York [Portrait - Washington Square] by Paul Strand. Free public domain CC0 image. hero-podcast.webp https://www.rawpixel.com/image/14264288 Evening Breeze by Asahachi Kono. Free public domain CC0 image. link-in-bio-image https://www.rawpixel.com/image/14262995 Bust by Mathew brady. Free public domain CC0 image. book-image-landing.webp book-image.webp https://www.rawpixel.com/image/8799536 Book template by Beatriz Fialho, public domain. Flora of Akaka Falls State Park. Free public domain CC0 image. akaka-falls-state-park-flora.webp https://www.rawpixel.com/image/8802845 Closeup of plantlife in the Malibu Canyon area of the Santa Monica Mountains. Free public domain CC0 image. malibu-plantlife.webp https://www.rawpixel.com/image/8799918 home/ephorei/www/wp-content/plugins/astra-sites/readme.txt 0000644 00000077344 15006121333 0020000 0 ustar 00 === Starter Templates — Elementor, WordPress & Beaver Builder Templates === Contributors: brainstormforce Donate link: https://wpastra.com/pro/ Tags: Elementor,Templates,Gutenberg,Block Editor,Astra Starter Sites Requires at least: 6.6 Requires PHP: 7.4 Tested up to: 6.7 Stable tag: 4.4.10 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html The growing library of 300+ ready-to-use templates that work with all WordPress themes including Astra, Hello, OceanWP, GeneratePress and more == Description == = Starter Templates: AI Website Builder and Elementor Templates = The future of website creation is here! With Starter Templates, you can create professional-looking websites in just minutes, powered by AI. Leverage the Starter Templates AI website builder to generate websites with: - Stunning designs - All relevant sections and pages - High quality stock images to help engage visitors - Compelling website copy tailored to your business - Extensive customization options Say goodbye to spending days or weeks designing and building a website. With Starter Templates, you can build websites faster than ever with AI. [Try this plugin on a demo site](https://bsf.io/starter-templates-demo) = HIGHLIGHTS = ★ WordPress AI website builder ★ Built-in AI assistant ★ Fast and easy to use ★ Large library of Elementor templates ★ Hundreds of WordPress block editor (Gutenberg) templates ★ 200+ Sections and block patterns ★ Supported page builders: Spectra, Elementor, Beaver Builder, WordPress editor ★ Fully customizable websites = How Does Starter Template AI Website Builder Work? = Starter Templates integrates with ZipWP, our amazing AI website building platform. It takes care of everything for you, from design to content generation. Let AI do the heavy lifting, so you can focus on your ideas! Our mission is to unlock the power of the internet for small businesses. Creating a website shouldn't be difficult, and growing a business on the internet shouldn't be complicated. With Starter Templates, you can create a stunning website in a matter of minutes. Simply describe your idea, and watch as a WordPress website is built before your eyes. Want to create a lightweight website for your business that also looks exceptional? = Follow the steps below: = 1. Select the type of website you're creating (portfolio, business site, landing page, or something else). 2. Provide your business name. 3. Describe your business. Use AI to refine your description prompt if you need to. 4. The AI will suggest images based on your input. Select the images you want to use. 5. Add your contact details and social media handles so people can interact. 6. Choose the website structure from the options. 7. Select any site features you need. 8. The AI will generate a website in under 2 minutes. 9. Customize your site as you see fit! Whether you're a beginner with no website building experience, or a seasoned web designer, Starter Templates has you covered. = All Features = Starter Template has all the essentials you need to create amazing websites! = AI Website Builder = Thanks to the power of AI, you can create your dream website effortlessly. Our AI analyzes your business description and goals, then selects the perfect design, generates professional copy, and curates visuals to match your brand. No more wrestling with complex themes or plugins – just describe your idea and let AI do the rest! = Lightning Fast Websites = Starter Templates prioritizes speed and efficiency without compromising quality. Here's what sets us apart: = Optimized Code = Pages created with Starter Templates have efficient code, and are free from all unnecessary elements. This translates to faster load times and a smoother user experience for visitors regardless of browser or device. = Realistic Templates = Starter Templates goes beyond stunning design. It delivers readymade website templates specifically crafted with your business in mind. Launching an eCommerce store? We have a diverse selection of store templates to get you selling in no time. Creating a business website? We have dozens of professional-quality designs ready for you to make your mark. No matter your industry or niche, we have a template that perfectly aligns with your vision. = Classic Starter Templates = Whether you're a small business owner, freelancer, or nonprofit organization, there's a template that suits your needs. Templates are carefully crafted to provide a polished and attractive look for your website. The cherry on top? Starter Template supports multiple page builders, including Elementor, Spectra, Gutenberg, and Beaver Builder. You have the flexibility to customize your website your way. = Hundreds of Sections and Block Patterns = Want to customize your website to make it truly unique? Use sections and block patterns to add your personal style. Available sections include: - Hero - Page Header - About - Services - Features - Contact - Why Choose Us - Call To Action - Portfolio - Gallery - Testimonials - Pricing - FAQ - Team - Statistics = AI-Integrated Adaptive Design Library = Personalize blocks and patterns to match your website style with the power of AI. The design library within the Starter Templates plugin is integrated with AI and royalty-free image repositories. All elements come pre-populated with relevant text and images that you can easily customize to match your brand. = Elementor Templates = A fan of Elementor? Look no further! Starter Templates offers a vast collection of professionally designed Elementor templates. You can effortlessly import entire websites crafted with Elementor, individual pages, or even specific blocks to enhance your site's functionality and aesthetic appeal. Then just drag, drop, customize, and launch your website! = Beaver Builder Templates = Explore the incredible library of professionally-designed Beaver Builder templates. Whether you're building a complete website or just need some inspiration, we've got you covered. You can save hours of design time compared to building your website from scratch! = WordPress Block Editor Templates = The WordPress block editor (formerly Gutenberg) is changing the game for website creation. Building from scratch can be time-consuming. Fortunately, Starter Templates offers a vast library of readymade templates to ignite your website's potential. = AI Assistant for WordPress = Our AI Assistant works in a similar way to ChatGPT but is specifically tailored for WordPress. With just a click of a button, you can use the power of artificial intelligence to help write copy for landing pages, proofread blog posts, translate content into different languages, generate custom HTML and CSS codes, and much more! = Royalty-Free Images = The Starter Templates plugin offers seamless integration with leading royalty-free image repositories such as Pexels and Unsplash. You have access to millions of top-tier images within your WordPress dashboard. Simply search for the image you need and select it. = Training Videos = As the saying goes, "Give someone a fish, and they will eat for a day; teach them how to fish, and they will eat for a lifetime." Embracing this philosophy, we offer a range of comprehensive training videos designed to complement our templates. They provide the knowledge and skills necessary to build, launch, and maintain your website. = Types of Websites You Can Create = Starter Templates is perfect for building websites for: ✔ Personal branding ✔ Restaurants ✔ Service providers ✔ Nonprofits and charities ✔ Events ✔ Startups ✔ Local businesses ✔ Wellness businesses ✔ Landing pages ✔ Lead generation websites ✔ eCommerce stores ✔ Blogs ✔ Manufacturing businesses ✔ Any other type of WordPress website There’s no limit to what you can create! Please note: To access templates and AI features, you’ll need a ZipWP account. [ZipWP platform](https://zipwp.com/). Signing up is quick, easy, and 100% free. = Fun Facts About Starter Templates = ➜ Over 5,000 websites are built with Starter Templates every day. ➜ The plugin has been installed on more than 1.6 million websites. ➜ Starter Templates has more than 4,000 five-star reviews. ➜ Our team of dedicated full-time WordPress experts help and support hundreds of users daily. ➜ A devoted team full-time designers keep the design library up to date. ➜ Our plugin offers more than 100 free Elementor templates. ➜ You can import a complete website, individual page, or section of a page in seconds. ➜ We support 3 page builders: Spectra, Elementor, and Beaver Builder as well as the WordPress editor ➜ "eCommerce" is the most searched keyword in our library. = The Starter Templates Plugin Works With... = ➜ Astra Theme ➜ Spectra website builder ➜ WordPress block editor/Gutenberg ➜ Elementor page builder ➜ Beaver Builder ➜ WooCommerce ➜ WPForms ➜ Sitekit == Frequently Asked Questions == = Why Is this awesome plugin free? = Free is always the best price. We offer Starter Templates for free to showcase what our team is capable of. It’s also good business. If you have a positive experience with Starter Templates, you might be tempted by the extra features included in premium versions of ZipWP, the Astra WordPress theme and other products we produce. We’re not afraid to prove our worth and offering a plugin for free is a great way to do that. = Which theme Is used by the AI website builder? = Starter Templates, uses the Astra theme. It’s the world's most popular WordPress theme with millions of users. Since Starter Templates and Astra are developed by the same company, we can control their development plans to make the AI website builder work perfectly every time. = What kind of customizations can I make to an AI generated website? = Once your website is generated, you have complete control over its content and layout. You can customize it as you would any other website, including changing colors, text, adding images, and creating new sections and pages. == Screenshots == 1. AI Website Builder - Starter Templates has been integrated with ZipWP - our innovative AI Website Builder to make building websites super easy. 2. Unlimited Customizations - Enjoy complete control of your website content and layout. Change colors, fonts, add images, create and add new patterns and pages. 3. Hundreds of Templates - Choose from over 200 diverse designs to build your dream website in minutes. Whether it's eCommerce, Business, Portfolio, or any niche, find the perfect template tailored to your vision. 4. Limitless Customizations- Explore fonts and colors with a simple click. Effortlessly change images add new patterns/pages. 5. Design Library - No more starting from scratch, no more design roadblocks. Jumpstart your designs with any of our professionally designed pages and patterns templates. 6. Use the power of AI with a single click to write copy, proofread, translate content into different languages. Adjust content length and tone seamlessly for maximum appeal. == Changelog == v4.4.10 - 16-December-2024 - New: - Expanded plugin accessibility with translations in 7 new languages: [ Spanish, German, Dutch, Frensh, Italian, Polish, Portuguese ] - AI Assistant: The AI Assistant is now Location Aware. - Improvements: - AI Assistant: Revamped the entire UI of the Assistant Sidebar. - Enhanced NPS Survey styles to ensure seamless compatibility with other plugins. - Fix: - Removed redundant code related to authentication to enhance security and simplify maintenance. v4.4.9 - 02-December-2024 - Improvements: - AI Builder: Enhanced error handling in the import process with clearer error messages. - AI Builder: Upgrade plan popup UI enhancements for a better user experience. - AI Builder: Added import success action to trigger custom actions after successful site import. - Design Kit: Improved business description screen for better user experience. - Design Kit: UI enhancements for better usability. - Design Kit: Improved code quality for enhanced performance and maintainability. - UI/UX optimizations for a smoother Classic Templates Builder experience. - SureCart template is now the default selection for eCommerce templates. - Fixes: - Free Images: Removed garbage CSS conflicting with other plugins. v4.4.8 - 15-November-2024 - Improvements: - AI Builder: Hidding ecommerce templates if ecommerce feature is hidden. - Free Images: Removed the "Free Images" option from the WordPress media library where images are not expected. - NPS survey hidden for white-labeled environments. - UI/UX optimizations for a smoother Classic Templates Builder experience. - Fixes: - AI Builder: Addressed a security bug. Props to Patchstack for reporting it. - AI Builder: Fixed SureCart settings import failed error. - AI Builder: Resolved an issue causing the import process to fail due to unexpected SureForm plugin redirection upon activation. - Free Images: Resolved an issue where the media library button text was incorrectly displayed in certain cases. - Ensured selected eCommerce platform and feature plugin are synchronized. - Resolved intermittent issue with other plugin updates failing. v4.4.7 - 04-November-2024 - New: - AI builder: Added compatibility for importing SureForms templates. - AI builder: Added filter to hide specified features on feature selection screen. - Improvement: - Prompted users for detailed business descriptions to enhance content generation. - Enabled SureCart provisional account creation when the eCommerce feature is selected. - Added page builder selection screen for classic templates. - Added pre-import warning to alert users about potential overrides of existing settings during template import. - Hiding non-FSE page builder options when the Spectra One theme is active. - Design Kit: Generating business description based on the selected language. - Design Kit: Optimized styles for better readability and usability on smaller screens. - AI Assistant: Resolved PHP fatal error caused by a conflict with certain plugins. v4.4.6 - 16-October-2024 - Fix: Updated outdated migrations that were causing PHP errors. v4.4.5 - 15-October-2024 - New: - AI Builder: Implemented toasters to provide more detailed error information. - AI Builder: Added source parameters to URLs redirecting to ZipWP for better tracking. - Design Kit: Added source parameters to URLs redirecting to ZipWP for better tracking. - Tweak: Refactored the NPS code by separating it into an independent NPS library. - Improvement: - Design Kit: Removed outdated options data that were previously left undeleted. - Design Kit: Optimized server API call execution for better performance. - Enhanced code quality and optimization for better performance and maintainability. - Fix: - Free Images: Fixed broken UI components for Elementor and Beaver Builder. v4.4.4 - 07-October-2024 - Fix: Resolved issue where the selected page builder was resetting after a page refresh. - Fix: Corrected CSS issues affecting the appearance and functionality of checkboxes on the feature page. v4.4.3 - 30-September-2024 - New: - AI Builder: Added functionality to save failed site creations and allow reimporting them. - AI Builder: Displaying users ZipWP plan information. - AI Builder: Displaying alert notice when AI site generation count is nearing its limit. - AI Builder: Added an option to choose the type of store when the Ecommerce feature is selected. - Design Kit: Introduced filter `ast_block_templates_exclude_post_types` to exclude asset loading for specified post types. - Introduced eCommerce feature for classic templates along with some UI tweaks. - NPS form now includes a back button for better usability and rating edits. - Improvements: - AI Builder: Resume Session popup will now restore the step where the user left off. - AI Builder: Improved images upload process for better performance and user experience. - AI Builder: Showing Premium template notice on customizer screen if user has free plan. - AI Builder: Added a validation on Image upload to check if the image URL is valid. - Design Kit: Added loading skeleton when uploading the images on AI onboarding. - Design Kit: Added images validation on AI onboarding. - Fix: - AI Builder: Customizer 'Show site title' option was not applied correctly during site import. - Design Kit: Resolved CSS conflicts with the WordPress core blocks. - Design Kit: Fixed PHP warning when generating content. - Design Kit: Content was not getting generated in the selected language. - Images Library: Resolved issue where image search results reset to default after applying filters. v4.4.2 - 03-September-2024 - New: - AI Builder : Added a filter to update default website language. - AI Builder : Added image replacement compatibility for archive product banner image. - Added filter to disable the "Design Kit" library. - Improvements: - Design Kit: Enhanced API performance by optimizing execution times and reducing delays. - Free Images : Enhanced UI for better user experience. - Better database handling for the NPS. - Fixes: - Design Kit: Corrected styling issues for patterns/pages preview to ensure consistent display. - Design Kit: Addressed CSS conflicts with SureCart blocks to prevent styling discrepancies. - After import images were not getting replaced for classic Elementor templates. v4.4.1 - 28-August-2024 - Improvement: Hardened the security of the plugin. v4.4.0 - 07-August-2024 - New: - AI Builder: Enhanced onboarding UI. - Design Kit: Enhanced personalized library steps UI. - Improvements: - Switched from using transient to option data for storing information. - AI Builder: Enabled business descriptions to be generated in the selected language. - Design Kit: Converted Spectra common stylesheet to a JSON file instead of an option variable. - Design Kit: Hidden Update Image option until the user personalizes the library. - Design Kit:Blocked block pages preview if import is in process. - Fixes: - Fixed issue where user input was not getting prefilled when switching between steps. - Ensured required plugins for selected features are correctly installed. - Resolved an issue where some classic editor templates were getting stuck during import. - Fixed issue where the default logo was not getting replaced for classic templates. - AI Builder: Removed the condition that showed the site limit exceed popup for all sites. - Design Kit: Fixed issue where the Favorites functionality was not working in certain cases. - Design Kit: Addressed problem where related block pages were not displaying in some scenarios. - Design Kit: Fixed content regeneration for a category. - Design Kit: Resolved visibility issue with the "Design Kit" button in WordPress 6.6 with the full site editor. v4.3.9 - 25-July-2024 - Improvement: Improved the UI/UX. - Improvement: AI Builder - Better error message handling. - Improvement: AI Builder - Added new icon for the ecommerce feature. - Improvement: Improved the way Starter Templates translate strings in the script. - Fix: AI Builder - Fixed an issue where the template preview designs were showing ternary operation results as HTML. - Fix: AI Builder - Required plugins data was incorrect on the Elementor templates screen. - Fix: AI Builder - Social icons title was not translation-ready. - Fix: AI Builder - Fixed an issue where the import process was failing after changing the site language. - Fix: Resolved a fatal error encountered with the Ghost Kit plugin. v4.3.8 - 16-July-2024 - New: AI Builder - Added script translation with a filter to update the text domain for script translation. - Improvement: ZipAI - Added WordPress 6.6 compatibility. - Improvement: Hardcoded index are made dynamic. - Fix: AI Builder - Premium badge was not showing for Premium templates. - Fix: Footer widgets was not getting imported for AI & Classic templates. v4.3.7 - 09-July-2024 - New: - Added NPS Survey. - Improvements: - Updated "What's New" library. - Enhanced sidebar for classic editor to align with AI Builder. - Updated pre-import screen for classic templates. - Standardized text-domain to "astra-aites" for all libraries. - Refreshed font pairs. - Removed duplicate code. - Fix: - Upload logo and selected color pallete was not getting imported for FSE. - Design Kit - Business category now pre-fills correctly during onboarding. - AI Builder - Business name now resets after clicking "Start Over." - AI Builder - "Resume Session" popup no longer appears after site creation. - AI Builder - Business type now pre-fills correctly when site is created from ZipWP platform. - AI Builder - Hover color for accent color is now a CSS variable. - AI Builder - Correct icon now appears for the Contact Form feature. v4.3.6 - 04-July-2024 - Fix: AI Builder - Resolved an issue preventing users from continuing to the next step if the business type input was entered manually. - Fix: Design Kit - Resolved an issue where adding social media URLs caused an error when proceeding to the next step. v4.3.5 - 02-July-2024 - New - Design Kit - Added a page preview feature along with other page options. - Design Kit - Introduced error boundaries for better error management. - Improvement - Design Kit - Introduced a new "Favorites" tab, separated from Patterns, Pages, and Kits. - Design Kit - Added clickable navigation in the sidebar, allowing users to jump to previous steps. - Design Kit - Disabled live preview and other actions while inserting the kit into a page. - Design Kit - Improved UI/UX for a better user experience. - Design Kit - Enhanced error handling during the import process. - Design Kit - Added an admin notice for missing file permissions. - Design Kit - Removed validation for the mobile field in AI onboarding. - Design Kit - Added a loader while inserting the block. - AI Builder - Added ZipWP new features icon support. - AI Builder - Added a filter to disable the Premium Badge for templates. - Fix - Design Kit - Fixed console error causing a blank screen in GT AI onboarding if already prefilled. - Design Kit - Resolved an issue where the Design Library button was not displayed in the Spectra One theme editor when the Gutenberg Plugin was activated. - Design Kit - Fixed a console error that occurred on the screen of the image when AI data was prefilled. - Design Kit - Addressed a blank screen issue when accessing the "Design Library" on Bedrock-powered sites. - Design Kit - Fixed option 'ast-block-templates_data-' not getting deleted after importing the site template. - Design Kit - Prevented adding a block to a new page after Spectra installation. - Design Kit - Fixed shuffling of images when changing the orientation multiple times. - Design Kit - Fixed AI-generated business description response count not working as expected. - Design Kit - Fixed issue with authentication redirection. - AI Builder - Made compulsory features enabled by default and non-clickable. - AI Builder - UI improvements. - AI Builder - Fixed acceptance of incorrect input in the email field. - AI Builder - Ensured the "site creation limit exceeded" popup is displayed correctly. v4.3.4 - 24-June-2024 - Chore: AI-Builder - Included build files. - Improvement: AI-Builder - Added ability to skip the Features screen using a filter. - Improvement: AI-Builder - Improved UI/UX. - Fix: AI-Builder - Site creation limit exceeded popup was not displaying. - Fix: AI-Builder - Removed irrelevant error messages from logs during import failures. v4.3.3 - 12-June-2024 - Improvement: AI Builder - Error Boundary Screen in case of unexpected errors. - Improvement: AI Builder - Removed phone validations to match this phone format - Ex: +1 (888) SIXT-CAR (749-8227) - Improvement: ZipWP Images - Updated preview screen for better UX. - Fix: AI Builder - Better handling of console errors due to missing URLs in Image object from ZipWP images API. - Fix: Design Kit - Fixed a console error in Gutenberg Templates library due to missing URLs for author and engine for placeholder images. - Fix: Resolved PHP 8.2 deprecated notice related to the creation of dynamic properties. - Fix: ZipWP Images - "Select" of media library was not showing in the customiser preview. v4.3.2 - 11-June-2024 - Fix: Fixed an issue where the search functionality in the Elementor editor was not working. v4.3.1 - 06-June-2024 - Improvement: Added logging for import failures with a user alert for log details, warning that retries will exhaust AI site attempts. - Improvement: Prefill websites based on the previous site creation. - Fix: Resolved issue causing infinite skeleton loading for the classic template library. - Fix: Resolved blog posts throwing 404 errors. - Fix: Fixed an error when using the Spectra One theme and Starter Templates to import websites with ZipAI. - Fix: The title for the `Description` step does not change for exceptional cases. - Fix: Design Kit - Resolved Console error for undefined images. v4.3.0 - 04-June-2024 - New: What's New - Ability to see the new updates for Starter Templates plugin in the form of feed. - New: Free Images - Added all new library for Free Images with new free image search engines like Pexels and Pixabay. - Improvement: Added Admin Notice if Required XML Reader Class Not Found. - Improvement: Consistent UI Changes for AI Builder. - Improvement: UI - Improved the tooltip UI. - Fix: Classic Templates Not Showing for New Sites During Sync. - Fix: AI Builder - Fixed an issue with inconsistent font sizes and line height in the onboarding process. v4.2.6 - 27-May-2024 - Improvement: AI Builder - Added a pre-installation confirmation modal before building the site. - Fix: Fixed a redirection issue with the "Try the New AI Builder" button on Starter Templates dashboard. - Fix: Corrected template listing for the Spectra One theme. - Fix: Fixed an issue where import failed for Beaver Builder templates. - Fix: Addressed an issue where fonts, colors, and other settings were not applied after importing Elementor templates. v4.2.5 - 21-May-2024 - Fix: Resolved an issue that caused plugin activation errors on multisite installations. - Fix: Design Kit - The library not displaying on subdomain sites when the plugin is network activated. v4.2.4 - 17-May-2024 - Improvement: Added a way to disable Classic Templates Importer. - Fix: Fixed broken WP-CLI import process for classic templates. v4.2.3 - 14-May-2024 - Fix: Fixed the error while importing the classic templates. v4.2.2 - 10-May-2024 - Improvement: Better error handling. - Improvement: Better preview for the color palette. - Improvement: Better UX while selecting Starter Templates. - Improvement: Improved the way Starter Templates stores JSON data while sync process to address memory issues. - Improvement: AI Builder - Improved the user experience by blocking unwanted options while processing data on a particular step. - Fix: Fixed an issue where the Starter Templates won't get imported on an RTL website. - Fix: Design Kit: Rectified an issue where the Template kit names went missing due to library update. - Fix: AI Builder - Fixed an issue where the import would remain stuck at 98%. - Fix: Made Starter Templates more secure while uploading SVG files. v4.2.1 - 03-May-2024 - Fix: Fixed an incorrect type casting of a string on a popup for AI Builder. v4.2.0 - 29-April-2024 - New: Added custom color palette selection option in AI Builder. - New: Added "Features" screen to the Classic Builder onboarding. - New: 'Load More' templates option in AI Builder. - New: Design Kit - Added language compatibility for personalizing the AI copy. - Improvement: Enhanced template search functionality. - Improvement: Improved the way Starter Templates store JSON data during the import process to address memory issues. - Improvement: Optimized and enhanced code for a better user experience. - Improvement: User Interface improvements for the Template Kit library. - Improvement: Design Kit - Improved responsive design and UX. - Improvement: Classic Templates - Improved responsive design and UX. - Improvement: Ability to edit the previous step of AI Onboarding by clicking on the sidebar. - Improvement: Now, Upload images are available in a new tab within same screen. - Fix: Resolved issue with import for RTL sites. - Fix: Design Kit - Fixed an issue where the Design Kit button was not visible on an FSE-based theme. - Fix: Design Kit - Fixed an issue where the line height of the Design Kit templates appeared messed up. - Fix: Design Kit - Fixed a fatal error caused by unavailable error_log related libraries on the user's server. v4.1.7 - 22-April-2024 - Improvement: Hardened the security of the plugin. v4.1.6 - 09-April-2024 - Fix: Resolved issue with Media library not functioning properly. v4.1.5 - 08-April-2024 - Improvement: Streamlined the Gutenberg Templates library structure to reduce resource consumption. v4.1.4 - 01-April-2024 - Fix: AI image replacement batch was inadvertently functioning for Classic editor templates. - Fix: Displaying "Download images fail" message when no images are selected during onboarding. v4.1.3 - 28-March-2024 - Fix: Resolved import process getting stuck due to resource limitations on certain hosts. v4.1.2 - 25-March-2024 - Improvement: Added Wordpress 6.5 compatibility. v4.1.1 - 20-March-2024 - Fix: Import process was getting stuck after activating the plugin required for selected feature. v4.1.0 - 19-March-2024 - New: Introduced local language support in AI building. - New: Added an upload image feature when selecting images for your site. - Improvement: Enhanced AI building for a better user experience. - Improvement: Consolidated Logo, Font, and Color Palette support into one screen on the Classic Builder. - Improvement: Enhanced and optimised code for an improved user experience. v4.0.13 - 21-February-2024 - Fix: Resolved an issue where the AI description won't get generated on WordPress.com sites. v4.0.12 - 12-February-2024 - Fix: Resolved an issue where the Template Kit button was not visible due to mismatched business categories. v4.0.11 - 10-February-2024 - Fix: Resolved an issue where the import process stayed stuck at 95% with AI Website Builder. v4.0.10 - 07-February-2024 - Fix: Resolved an issue where the Template Kit button was not visible. v4.0.9 - 05-February-2024 - Fix: Resolved an issue where the category was not assigned after import. v4.0.8 - 01-February-2024 - Improvement: AI Website Builder - Ability to create a site with desired features like Donations, Automation, Sales Funnels Video Player, etc for the website. v4.0.7 - 29-January-2024 - Fix: Resolved an issue where the Premium Template Kits won't get imported. v4.0.6 - 25-January-2024 - Improvement: Enhanced user experience by providing informative error messages for better troubleshooting. v4.0.5 - 23-January-2024 - Improvement: Added Flexbox Container compatibility for Elementor templates. v4.0.4 - 22-January-2024 - Fix: Fixed the fatal error issue that would occur after Spectra v2.12.0. v4.0.3 - 17-January-2024 - Fix: Fixed an issue where the import process was breaking for AI websites. - Fix: Fixed an issue where the images won't get reflected in search results as per the search keyword. v4.0.2 - 15-January-2024 - Improvement: Added Flexbox Container compatibility in Elementor. - Improvement: Added ability to resume back to last session while building AI website. - Improvement: Better UX while using AI Website Builder. v4.0.1 - 04-January-2024 - Fix: Fixed an issue where the CSS looked messed up after importing using AI Website Builder. v4.0.0 - 03-January-2024 - New: AI Website Builder. - Fix: Tightened the plugin security. v3.5.7 - 30-December-2023 - Fix: Fixed Template Kit library conflict ( 503 Error ) with Gravity Form plugin. Check out the detailed changelog [here](https://startertemplates.com/whats-new/). home/ephorei/www/wp-content/themes/twentytwenty/readme.txt 0000644 00000013036 15006122325 0020140 0 ustar 00 === Twenty Twenty === Contributors: the WordPress team Requires at least: 4.7 Tested up to: 6.7 Requires PHP: 5.2.4 Stable tag: 2.8 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Default theme for 2020. == Description == Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors. == Changelog == = 2.8 = * Released: November 12, 2024 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_2.8 = 2.7 = * Released: July 16, 2024 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_2.7 = 2.6 = * Released: April 2, 2024 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_2.6 = 2.5 = * Released: January 16, 2024 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_2.5 = 2.4 = * Released: November 7, 2023 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_2.4 = 2.3 = * Released: August 8, 2023 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_2.3 = 2.2 = * Released: March 28, 2023 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_2.2 = 2.1 = * Released: November 1, 2022 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_2.1 = 2.0 = * Released: May 24, 2022 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_2.0 = 1.9 = * Released: January 25, 2022 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_1.9 = 1.8 = * Released: July 20, 2021 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_1.8 = 1.7 = * Released: March 9, 2021 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_1.7 = 1.6 = * Released: December 8, 2020 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_1.6 = 1.5 = * Released: August 11, 2020 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_1.5 = 1.4 = * Released: June 10, 2020 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_1.4 = 1.3 = * Released: May 14, 2020 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_1.3 = 1.2 = * Released: March 31, 2020 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_1.2 = 1.1 = * Released: December 12, 2019 https://wordpress.org/documentation/article/twenty-twenty-changelog/#Version_1.1 = 1.0 = * Released: November 12, 2019 Initial release == Copyright == Twenty Twenty WordPress Theme, Copyright 2019-2024 WordPress.org and contributors. Twenty Twenty is distributed under the terms of the GNU GPL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. Twenty Twenty is derived from the Chaplin Theme, Copyright 2019 Anders Norén Chaplin Theme is distributed under the terms of the GNU GPL version 2.0 Twenty Twenty bundles the following third-party resources: Illustrations by Tammie Lister License: Creative Commons Zero (CC0), https://creativecommons.org/publicdomain/zero/1.0/ Inter Font Copyright (c) 2016-2019 The Inter Project Authors (me@rsms.me) License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://rsms.me/inter/ Bespoke Icons Created For Twenty Twenty License: Creative Commons Zero (CC0), https://creativecommons.org/publicdomain/zero/1.0/ List of bespoke icons: - Search icon - Menu icon Feather Icons Copyright (c) 2013-2017 Cole Bemis License: MIT License, https://opensource.org/licenses/MIT Source: https://feathericons.com Used for post meta icons, and the link icon in the social menu. TikTok Icon License: GPLv2 Source: Émilie Lebrun - @Emlebrun Used for TikTok social icon. Social Icons License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Source: WordPress Social Link Block (See wp-includes\blocks\social-link.php) Code from Twenty Nineteen Copyright (c) 2018-2024 WordPress.org License: GPLv2 Source: https://wordpress.org/themes/twentynineteen/ Included as part of the following classes and functions: - TwentyTwenty_SVG_Icons - twentytwenty_the_theme_svg() - twentytwenty_get_theme_svg() - twentytwenty_nav_menu_social_icons() Code from Twenty Seventeen Copyright (c) 2016-2024 WordPress.org License: GPLv2 Source: https://wordpress.org/themes/twentyseventeen/ Included as part of the following classes and functions: - twentytwenty_unique_id() Underscores https://underscores.me/, (C) 2012-2024 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html) home/ephorei/www/wp-content/themes/twentytwentytwo/readme.txt 0000644 00000013461 15006122326 0020675 0 ustar 00 === Twenty Twenty-Two === Contributors: wordpressdotorg Requires at least: 5.9 Tested up to: 6.7 Requires PHP: 5.6 Stable tag: 1.9 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html == Description == Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Site Editor features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours. == Comment Block Support == If you are using WordPress version 6.1 or newer, you are recommended to update the comment block to the latest version. = Instructions = 1. From the WordPress admin, open Appearance > Site Editor. 2. Select "Templates" from the menu in the Site Editor sidebar. 3. Select the template (see the list below) and open it in the Site Editor. 4. Locate the comments block. 5. If the comments block has a button with the text "Switch to editable mode", activate the button. 6. Save the template. If the button is not present, then you may have already updated the block, and you do not need to make any changes. Follow these instructions for each of the following templates: - Pages - Page (No Separators) - Single Posts - Single Post (No Separators) == Changelog == = 1.9 = * Released: November 12, 2024 https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.9 = 1.8 = * Released: July 16, 2024 https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.8 = 1.7 = * Released: April 2, 2024 https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.7 = 1.6 = * Released: November 7, 2023 https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.6 = 1.5 = * Released: August 8, 2023 https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.5 = 1.4 = * Released: March 28, 2023 https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.4 = 1.3 = * Released: November 1, 2022 https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.3 = 1.2 = * Released: May 24, 2022 https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.2 = 1.1 = * Released: February 22, 2022 https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.1 = 1.0 = * Released: January 25, 2022 https://wordpress.org/documentation/article/twenty-twenty-two-changelog/#Version_1.0 == Copyright == Twenty Twenty-Two WordPress Theme, 2021-2024 WordPress.org and contributors. Twenty Twenty-Two is distributed under the terms of the GNU GPL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This theme bundles the following third-party resources: DM Sans Font Copyright 2014-2017 Indian Type Foundry (info@indiantypefoundry.com) Copyright 2019 Google LLC Copyright 2014-2018 Adobe (http://www.adobe.com/) License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/googlefonts/dm-fonts IBM Plex Font Copyright 2017 IBM Corp. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/IBM/plex Inter Font Copyright (c) 2016-2020 The Inter Project Authors. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/rsms/inter Source Serif Font Copyright 2014-2021 Adobe (http://www.adobe.com/) License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/adobe-fonts/source-serif Block Pattern Images: "White Bellied Flycatcher" illustrated by Elizabeth Gould. Public Domain. https://www.rawpixel.com/image/321474/free-illustration-image-bird-vintage-birds Includes modified versions created specifically for Twenty Twenty-Two. Colorful vintage hummingbird illustrations. CC0. https://www.rawpixel.com/image/2281674/free-illustration-image-bird-hummingbird-flying https://www.rawpixel.com/image/2281671/free-illustration-image-bird-hummingbird-flying https://www.rawpixel.com/image/2281679/free-illustration-image-bird-hummingbird-animals https://www.rawpixel.com/image/2281665/free-illustration-image-hummingbird-ernst-haeckel-birds "Green-tailed Jacamar" by Jacques Barraband. CC0. https://www.rawpixel.com/image/328508/free-illustration-image-jacques-barraband-paradise "Ducks" by Goyō Hashiguchi. CC0 https://www.rawpixel.com/image/3813787/illustration-image-flower-art-floral "Colombes et lis, étoffe imprimée" illustrated by Maurice Pillard Verneuil. https://www.rawpixel.com/image/2053817/illustration-from-lanimal-dans-decoration Included as a short video clip. Modified versions of the above images, as well as additional "flight path" illustrations were created specifically for Twenty Twenty-Two. CC0. home/ephorei/www/wp-content/themes/twentytwentyone/readme.txt 0000644 00000013560 15006122330 0020640 0 ustar 00 === Twenty Twenty-One === Contributors: wordpressdotorg Requires at least: 5.3 Tested up to: 6.7 Requires PHP: 5.6 Stable tag: 2.4 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html == Description == Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog. == Installation == 1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button. 2. Type in Twenty Twenty-One in the search form and press the 'Enter' key on your keyboard. 3. Click on the 'Activate' button to use your new theme right away. 4. Go to INSERT ABOUT PAGE for a guide on how to customize this theme. 5. Navigate to Appearance > Customize in your admin panel and customize to your taste. == Privacy == Twenty Twenty-One uses LocalStorage to save the setting when Dark Mode support is turned on or off. LocalStorage is necessary for the setting to work and is only used when a user clicks on the Dark Mode button. No data is saved in the database or transferred. == Changelog == = 2.4 = * Released: November 12, 2024 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_2.4 = 2.3 = * Released: July 16, 2024 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_2.3 = 2.2 = * Released: April 2, 2024 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_2.2 = 2.1 = * Released: January 16, 2024 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_2.1 = 2.0 = * Released: November 7, 2023 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_2.0 = 1.9 = * Released: August 8, 2023 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_1.9 = 1.8 = * Released: March 28, 2023 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_1.8 = 1.7 = * Released: November 1, 2022 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_1.7 = 1.6 = * Released: May 24, 2022 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_1.6 = 1.5 = * Released: January 25, 2022 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_1.5 = 1.4 = * Released: July 20, 2021 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_1.4 = 1.3 = * Released: April 14, 2021 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_1.3 = 1.2 = * Released: March 9, 2021 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_1.2 = 1.1 = * Released: December 22, 2020 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_1.1 = 1.0 = * Released: December 8, 2020 https://wordpress.org/documentation/article/twenty-twenty-one-changelog/#Version_1.0 == Copyright == Twenty Twenty-One WordPress Theme, 2020-2024 WordPress.org and contributors. Twenty Twenty-One is distributed under the terms of the GNU GPL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. Twenty Twenty-One is derived from Seedlet, (C) 2020 Automattic, Inc. Twenty Twenty-One is also based on: Twenty Nineteen. 2018-2024 WordPress.org Twenty Nineteen is distributed under the terms of the GNU GPL v2 or later. Twenty Seventeen. Copyright (C) 2016-2024 WordPress.org Twenty Seventeen is distributed under the terms of the GNU GPL v2 or later. Twenty Sixteen. Copyright (C) 2015-2024 WordPress.org Twenty Sixteen is distributed under the terms of the GNU GPL v2 or later. Twenty Twenty. Copyright (C) 2020-2024 WordPress.org Twenty Twenty is distributed under the terms of the GNU GPL v2 or later. Underscores https://underscores.me/, Copyright (C) 2012-2024 Automattic, Inc. Underscores is distributed under the terms of the GNU GPL v2 or later. Normalizing styles have been helped along thanks to the fine work of Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/ Unless otherwise noted, the icons in this theme are derived from the WordPress Icons Library, licensed under the terms of the GNU GPL v2 or later. https://github.com/WordPress/gutenberg/tree/master/packages/icons This theme bundles the following third-party resources: input[type='checkbox'], input[type='radio'], input[type='ranged'], https://css-tricks.com/custom-styling-form-inputs-with-modern-css-features/ https://css-tricks.com/styling-cross-browser-compatible-range-inputs-css/ https://codepen.io/aaroniker/pen/ZEYoxEY Copyright (c) 2020 Aaron Iker https://codepen.io/chriscoyier/pen/FtnAa Copyright (c) 2020 Chris Coyier License: MIT. Images Art by Berthe Morisot 1841-1895. Public domain. https://www.wikiart.org/en/berthe-morisot/playing-in-the-sand https://www.wikiart.org/en/berthe-morisot/roses-tremieres-hollyhocks-1884 https://www.wikiart.org/en/berthe-morisot/young-woman-in-mauve https://www.wikiart.org/en/berthe-morisot/in-the-bois-de-boulogne https://www.wikiart.org/en/berthe-morisot/daffodils https://www.wikiart.org/en/berthe-morisot/self-portrait-1885 https://www.wikiart.org/en/berthe-morisot/the-garden-at-bougival-1884 https://www.wikiart.org/en/berthe-morisot/villa-with-orange-trees-nice https://www.wikiart.org/en/berthe-morisot/reading home/ephorei/www/wp-content/themes/twentytwentyfour/readme.txt 0000644 00000007441 15006122525 0021041 0 ustar 00 === Twenty Twenty-Four === Contributors: wordpressdotorg Requires at least: 6.4 Tested up to: 6.7 Requires PHP: 7.0 Stable tag: 1.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html == Description == Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4. == Changelog == = 1.3 = * Released: November 12, 2024 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.3 = 1.2 = * Released: July 16, 2024 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.2 = 1.1 = * Released: April 2, 2024 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.1 = 1.0 = * Released: November 7, 2023 https://wordpress.org/documentation/article/twenty-twenty-four-changelog/#Version_1.0 == Copyright == Twenty Twenty-Four WordPress Theme, (C) 2023-2024 WordPress.org and contributors. Twenty Twenty-Four is distributed under the terms of the GNU GPL. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This theme bundles the following third-party resources: === Fonts === Cardo Font Copyright (c) 2002-2011, David J. Perry (hospes02@scholarsfonts.net) License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: http://scholarsfonts.net Instrument Sans Font Copyright 2022 The Instrument Sans Project Authors. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/Instrument/instrument-sans Inter Font Copyright 2020 The Inter Project Authors. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/rsms/inter Jost Font Copyright 2020 The Jost Project Authors. License: SIL Open Font License, 1.1, https://opensource.org/licenses/OFL-1.1 Source: https://github.com/indestructible-type/Jost === Images === License: CC0 https://creativecommons.org/publicdomain/zero/1.0/ museum.webp - https://www.rawpixel.com/image/3297419/free-photo-image-interior-hallway-architecture tourist-and-building.webp - https://www.rawpixel.com/image/5928004/photo-image-public-domain-hand-person building-exterior.webp - https://www.rawpixel.com/image/430335/free-photo-image-architecture-building-roof windows.webp - https://www.rawpixel.com/image/3286615/free-photo-image-texture-architecture-building abstract-geometric-art.webp - https://www.rawpixel.com/image/3283970/free-photo-image-pattern-artwork-abstract angular-roof.webp - https://www.rawpixel.com/image/3289063/free-photo-image-architectural-detail-architecture art-gallery.webp - https://www.rawpixel.com/image/3286187/free-photo-image-person-stairs-architecture green-staircase.webp - https://www.rawpixel.com/image/430558/free-photo-image-abstract-architecture-art-public-domain hotel-facade.webp - https://www.rawpixel.com/image/3286725/free-photo-image-black-and-white-background-photos License: UNICODE LICENSE V3 https://www.unicode.org/license.txt icon-message.webp