The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
|
Fancybox version - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16) +--- Thread: Fancybox version (/showthread.php?tid=7459) |
Fancybox version - datiswous - 2015-07-31 What version of Fancybox is GS using for it's backend? I was looking in the jquery.fancybox.pack.js and it says 2.0.4 . Fancybox 2 is free for noncommercial projects, so that's fine for GS backend use. The Fancyboxplugin makes it available for frontend use though, so I assume the plugin cannot be used for commercial sites. Correct? Also, could it be that this plugin is still using version 1 code, so some functions actually don't work? RE: Fancybox version - shawn_a - 2015-07-31 you are correct https://github.com/GetSimpleCMS/GetSimpleCMS/issues/366 RE: Fancybox version - datiswous - 2015-07-31 What was GS version 3.0 release date? RE: Fancybox version - shawn_a - 2015-07-31 no idea RE: Fancybox version - datiswous - 2015-07-31 (2015-07-31, 03:10:25)shawn_a Wrote: no idea Apparently it was 26 march 2011: https://code.google.com/p/get-simple-cms/source/detail?r=420 RE: Fancybox version - shawn_a - 2015-07-31 Yeah i need to go back and tag those commits in github so i can make historical releases. earliest in git is 3.3.2 i thnk. obviously not a priority in any sense RE: Fancybox version - datiswous - 2015-07-31 Yeah off course, I just wanted to check if Fancyboxplugin was maybe based on the assumption that GS was using Fancybox 1, but probably not. This is because some plugin functions don't seem to work. I was actually checking the documentation for version 1 for changing some stuff... It would be nice if Fancybox (or other future lightbox type) and ckeditor version, code editor, etc. (probably all the stuff in /admin/template/js ) wil be listed somewhere in GS admin. RE: Fancybox version - shawn_a - 2015-07-31 what functionality? the plugin literally calls 1 line of code does it not ? $('a[rel]').fancybox(); if you want more functionality add it to your template. you mean like this ? https://github.com/GetSimpleCMS/GetSimpleCMS/blob/master/admin/inc/assets.php or this https://github.com/GetSimpleCMS/GetSimpleCMS/issues/341 RE: Fancybox version - datiswous - 2015-07-31 Yeah something like this in the GS admin interface somewhere (under support): Code: 'getsimple' => GSVERSION, RE: Fancybox version - shawn_a - 2015-07-31 The idea is that this will be an external file, and generated during our asset build process (we dont have one )by bower or something, and users could use cdn and bump the versions whenever they feel like it. And plugins can check the versions and do stuff or modify them . |