source: extensions/greydragon/changelog.txt

Last change on this file was 32869, checked in by SergeD, 18 months ago

Version 1.3.9 - see changelog for details

  • Property svn:eol-style set to native
File size: 15.5 KB
Line 
1=== Grey Dragon Theme ===
2Grey Dragon Theme - a custom theme for Piwigo
3
4Tags: HTML 5, Bootstrap, Open Sans
5
6This theme was designed and built by Serguei Dosyukov
7http://blog.dragonsoft.us/
8Copyright (C) 2009-2019 Serguei Dosyukov
9
10Compatible: PW 11.x, 12.x
11Minimum requirement: PW 11.0
12
13This 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
14Foundation; 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
15WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
16details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc.,
1751 Franklin Street Fifth Floor, Boston, MA  02110-1301, USA.
18
19=== Changelog ===
20version 1.3.9
21- Fixed issue with undefined variable p_pict_descr and p_pict_comment in footer JS
22+ Removed some compatibility warnings by adjusting <meta> tags
23+ Font Awesome updated to 6.2
24+ Bootstrap CSS updated to 5.0.2
25+ Deprecated support PNG for IE 7
26+ Deprecated obsolete.list
27
28version 1.3.8
29+ Verified compatibility with PIWIGO 13.x
30+ Added detection for Home Page when settings need to be updated.
31+ Added removal of home page content when the feature is turned off.
32+ Adjusted help for improved full-width CSS
33+ TR: Improved translation string to make PIWIGO version reference dynamic
34+ HELP: Adjusted Full body width suggestion to reflect current style references
35
36version 1.3.7
37- Removed smarty reference in prefilter function
38+ Removed compatibility with older versions of PIWIGO. Min required version is now 11.x
39+ Minor changes to lang files to reflect the small changes in the label in admin area
40
41version 1.3.6
42+ Verified compatibility with PIWIGO 12.x
43+ Bootstrap CSS updated to 5.0.1
44+ ADMIN: New option "No Carrousel click to Enter" to accomodate extended Carrousel navigation in the root page making click behaviour on the slide now optional
45+ Root page styles optimizations
46+ Added safety wrappers for variables in some templates as required by new SMARTY engine
47
48version 1.3.5
49+ Verified compatibility with PIWIGO 11.x
50+ Translation files synced from repo
51- Fix misalignment of admin section header for PW 11+
52- Fix issue with plugin detection
53
54version 1.3.4
55- Fix issue with incorrest styling when "hide counter" is requested in PIWIGO 2.10.x+
56
57version 1.3.3
58+ Verified for PHP 7.3
59+ Updated to use FontAwesome 5.11.2
60+ Added support for PIWIGO 2.10.x - PIWIGO version parsing
61+ Fixed layout issue in admin header
62
63version 1.3.2
64+ Translation improvements: DK, RU
65- Fixed issue with some icons missing after migration to Font Awesome
66- Fixed issue with some dialog sizes in Picture mode
67
68version 1.3.1
69+ Verified for PHP 7.2
70+ Validated support for PIWIGO 2.9.4
71- Fixed issue with header.tpl check for custom css content in PHP 7.2
72+ Updated to use Bootstrap v4.1.3
73+ Updated to use FontAwesome 5.6.3
74
75version 1.3.0
76+ Validated support for PIWIGO 2.9
77+ Min Piwigo version required is set to 2.7.0
78+ CSS: Added FontAwesome support
79+ ADMIN: Layout changed to use FontAwesome
80+ Fixed issue with hower icons be too dark in some colorpacks
81+ LANG: Translation support has been reset. Lang string refresh added for EN
82- Fixed issue with download link in admin area
83
84version 1.2.28
85+ Translation improvements: CZ, LV, NL
86+ Bootstrap CSS updated to 3.3.7
87+ ADMIN: Small css improvements
88+ Fixed issues with menus in various modes
89+ CSS: Fixed issues with login page colors for controls
90+ Added ID for image download link
91
92version 1.2.27
93+ Validated support for PIWIGO 2.8
94+ Translation improvements: ES, DE, GR, EO, HU, KR, MN, PL, SI, TH, VN, CN, HK
95+ Bootstrap CSS updated to 3.3.6
96
97version 1.2.26
98+ ADMIN: New option - Include "Click to Enter" link for Root Page
99+ ADMIN: Small style improvements for styles and menu support
100+ CSS: Added theme-<colorpack> class to body element allowing individual styling with 3rd party plugins
101+ CSS: Small style improvements                                                   
102+ Translation support: Added he_IL, th_TH, el_GR, zh_CN language
103+ Added support for translation of Home Page Quote
104+ Bootstrap CSS updated to 3.3.5
105
106version 1.2.25
107+ ADMIN: Small style improvements
108+ ADMIN: New Main Menu Mode: Static Menu - Header Right
109+ Translation support: 46 languages added
110+ Bootstrap CSS updated to 3.3.4
111
112version 1.2.24
113+ CSS: min width of drop down menu in header bottom menu mode is increased to 20em for better content alignment
114- Fixed navigation arrows photo overlay when thumbnail navigation bar is enabled
115
116version 1.2.23
117+ Added Icon tooltips in Icon metadata tab mode. This would also cause title to be shown in metadata overlay window
118+ Added navigation arrows display when hover over photo. This is visual indicators to help with visualization of navigation. Use of image maps is still permitted
119+ "Auto Close Popup Menu on Refresh" is now "Auto Close Popup Menu" - menu would close as soon as mouse leaves the popup menu area
120+ Corrected PayPal link for "Donate" link in admin area
121- Further fixes for Picture Overlay mode - Tags' "edit" was missing for some browsers
122
123version 1.2.22 *
124+ Added Photo metadata tab targets in picture.tpl (see template for positioning): {*GD_META_ICO*}, {*GD_META_TXT*}, {*GD_META_CONTENT*}
125+ Picture tab "classic" content moved into external templates picture_tab_ico.tpl, picture_tab_txt.tpl, picture_tab_content.tpl
126+ Added support for gd_get_metadata content trigger
127  You can add custom content for picture meta tabs
128    Ex: add_event_handler('gd_get_metadata', 'my_get_tab_metadata');
129        function greydragon_get_tab_metadata($metadata) { return $metadata; }
130        where each array element represents the tab
131          $metadata[] = array(
132             "id"         => unique id of the tab
133             "icon_class" => class to be used to render icon tabs
134             "title"      => tab or menu block title
135             "content"    => block content
136             "target"     => optional, rendering target - "left", "top", "right", "bottom", not supported, reserved for future use
137             "combine"    => combine_css or combine_js reference block
138           );
139  Prior to rendering $metadata is processed and converted in appropriate construct to be used by the theme
140  See ShareThis plugin for more details
141+ Tab switch logic in Photo page optimized to allow management of dynamic tabs introduced by 3rd party plugins
142+ Improved presentation and content alignment of Tags tab in picture page
143+ Added support for auto-close of popup menu on navigation or refresh - Auto Close Popup Menu on Refresh
144+ Help improvements
145- Fixed issue with missing colorpack setting when theme is first installed and settings are not set yet
146- Fixed issue with number of undefined theme params (unused at this time)
147- Fixed issue with missing enumerator for $footer_elements in footer.tpl
148
149version 1.1.21
150- Another attempt to fix issue with root url associated with gallery logo was not referring to the sites root properly when installed as sub-folder
151
152version 1.1.20
153+ ADMIN: Added support for various Favicon types including Apple Touch
154+ Added versioning for Theme settings for easier maintenance
155+ Localization added for Admin Help area
156+ Added support for %gallery_title% in header text/page banner
157- Fixed issue with root url associated with gallery logo was not referring to the sites root properly when installed as sub-folder
158
159version 1.1.19
160+ custom.css location moved to local/greydragon/ to comply with PWG guidelines. File should be automatically created when theme is updated.
161  Please make sure that migration is successful as it may require adjustment of "local" Folder permissions in some cases
162- Fix issue when Static menu would cause misalignment of the content in 3rd party plugins
163- Adjust min height of the content with Static menu to better fit the screen
164- Fixed issue when using SEO friendly URLs would cause logo not being visible in sub pages
165
166version 1.0.18
167- Added check for custom.css being present on new installations to prevent SMARTY error
168- Added additional "special" pages not to display main menu
169
170version 1.0.17
171+ Added check for anonymous users when no comments present to show "No Comments allowed" in Picture page
172+ Added support for "Activate navigation thumbnails" option of the PWG in photo pages
173- Suppressed support for Exif metadata icon managed by general settings in Photo pages. This logic is managed by "Hide Exif Data" option of the theme
174- Fixed issue with content alignment in Calendar page when Static menu is used
175
176version 1.0.16
177+ Version information moved into greydragon.class.php for easier maintenance
178- Fixed issue with missing link to switchbox.js in photo pages which would prevent "photo sizes" drop down to work
179
180version 1.0.15
181+ ADMIN: Added "Image Size" option for Root Page
182+ ADMIN: Added "Hide EXIF" option for Photo Page
183+ ADMIN: Help content moved into standalone template file
184+ Added support for "User Tags" plugin
185+ Added support for PayPal Order Cart module - PayPal entry form now integrated as a Tab or Overlay
186+ PNG size optimization for theme elements
187+ Improved styles of Colorbox for overlays
188+ "Tags" picture data made optional - tab would be visible only if tags are present or "User Tags" plugin is enabled
189- Fixed issue with Colorbox not be referenced in some cases causing popup overlay dialogs functionlity not be supported when user is not logged in
190- Fixed issue of breadcrumb overlap with image toolbar
191
192version 1.0.14
193+ Hiding of photo counters extended to category menu
194+ Infos, Warnings and Errors message area moved into popup overlay. For Infos and Warnings message would be removed after 8 seconds. "Errors" is closed on click.
195+ ADMIN: Photo Metadata display mode can be switched between tabs with text/icon expanded or collapsed, text/icon with overlay, or hidden
196+ ADMIN: Added ChangeLog link in toolbar
197- ContactForm plugin: Fixed form styles to make page better aligned
198- ADMIN: Fixed issue when under some conditions config info could become corrupted
199- Deprecated events to populate page header - code moved into header template
200- Fixed missing div in photo page
201- Page layout HTML 5 validation of photo page
202                                                                 
203version 1.0.13
204+ New colorpack - GreyDragon
205+ ADMIN: Added support for horizontal menu - "Static Menu - Header Bottom". When used with Additional Pages Plugin, pages except Root Page would be embeded into menu bar instead of drop down menu.
206+ ADMIN: Added option "Display navigation arrows" for Root page
207+ ADMIN: Added option "Display navigation controls" for Root page
208+ Added support for thumb shadow space - custom CSS is required (please refer to help section in admin area). Latest gdThumb is recomended.
209+ CSS: cleanup
210- Removed hardcoded height for root page slideshow to accomodate navigation controls
211- Fixed issues with Categories List overlapping when Static menu is enabled
212- In Phote page, hide overflow photo when huge size is used
213
214version 1.0.12
215+ ADMIN: JS is moved out page source into dedicated admin.js for better reusability
216- Fixed issue with active menu header not being highlighted in PWG 2.7
217
218version 1.0.11
219+ Full support for themeconf[colorscheme] implemented
220+ Removed use of background images in admin area to improve performance
221+ CSS: Enforce min width for admin area - 1270px to allow proper display of help section
222+ Admin: added help section for Advanced Options - Custom CSS with few samples
223+ Admin: new option for Root page - Adapt slideshow size to each photo, i.e. elastic mode
224- CSS: Removed overflow: visible for #theImage causing scroll bar to appear in some cases for image in photo page
225- CSS: Removed min-width for footer
226
227version 1.0.10
228+ Piwigo 2.7 compatible
229+ Removed use of local_head.tpl
230+ Added support for themeconf[colorscheme]
231- CSS: adjust background for image thumbs to match respective color packs when gdThumb is not installed
232- Admin: added auto-hide for Info messages (10 seconds)
233
234version 1.0.9 - official release
235+ Admin: "Admin Tools" plugin added as recommended
236+ Admin: "gdThumb" plugin added as recommended
237+ Admin: Recommended plugins are now linked to associated Piwigo Extensions pages
238+ Admin: New option - Hide About Link
239+ Admin: New option - Animate Menu
240+ Admin: If Header Text is not used, then global "Page banner" would be taken in consideration
241+ Admin: Site credits can be shown as text/icon or hidden
242+ Admin: New option - Include Contact Webmaster Email in the Footer for Members
243+ Admin: New option - Remove photo counter in breadcrumbs
244+ New colorpack - blackhawk
245+ CSS: If footer text is not used, footer would "collapse" into 1 line
246+ CSS: If neiter header text or logo is set, header would collapse
247+ CSS: Added box style for additional info box in albums and photo pages
248+ CSS: Info/Warning/Error message boxes are now take only space needed
249+ CSS: Pages impose min height for mid section to prevent layout "collapse" on load
250+ "My profile" link moved to the first position and would shows user's name instead
251+ Improvements to menu presentation and state handling
252+ Hide "administration" link in the footer if "Admin Tools" plugin is enabled
253+ Adds "Theme Config" option under "Administration" menu if "Admin Tools" plugin is enabled
254+ Major redesign of Menu handling. Static Menu is not allowed in Picture pages
255+ Added support for tab view for metadata and comments in Photo page. New Admin option: Default tab to be displayed
256- JS reorganizing
257- CSS clean up
258- Fixed issue when change to root page content was not detected causing misleading message in Admin area on Save
259- Fixed capitalization of "contact" link in footer.tpl
260- Fixed issue in IE when Admin Tools menu closes while trying to navigate
261- Fixed thumb positioning to center thumb image
262- Fixed issue when empty strings in settings would not be recognized as empty value
263
264version 1.0 build alpha 6
265+ CSS cleanup
266+ If Gallery Description left empty, space would not be allocated in the Root Page causing image to be centered
267+ New colorpack: whitehawk - White theme
268
269version 1.0 build alpha 5
270- Fixed issue with uninitialized variable when neither favicon or "no generator" are selected
271
272version 1.0 build alpha 4
273+ Admin: New option "Remove Piwigo Generator Meta Tag" which can be used along with "Show Site Credits"
274+ Admin: Added support to allow "lower case text" be optional
275+ Use of custom.css file is extended to take advantage of its flexibility and prevent dynamic inline CSS where applicable
276+ Changes to Info/Warning/Error messages colors to better match the theme
277+ Admin: More translation support added for theme options
278- Admin: Fixed issue when some default settings were not properly persisted causing improper application
279- Admin: Fixed issue with Smarty cache not being purged when some settings are applied.
280- During conversion to Bootstrap I broke use of font-based icons, it is now fixed (ex: comment collapse area)
281
282version 1.0 build alpha 3
283+ Major theme code refactoring. Theme logic is now "classified"
284+ Bootstrap CSS support introduced to alleviate browser dependencies.
285+ Theme's CSS is moved out of theme.css to ensure proper application
286+ Admin: Added option to enable debug mode
287+ Admin: Added option to reset theme settings
288+ Admin: Added check for required PW version and plugins
289+ Admin: Theme styling is extended to Theme's admin area
290- Admin: Removed option to suppress noindex for Robots (managed from PW config.inc)
291- Admin: Fixed issue with quotes not stored properly in various fields
292
293version 1.0 build alpha 2
294+ Added support for Root Page settings. Requires Additional Pages Module
295
296version 1.0 build alpha 1
297+ initial release
Note: See TracBrowser for help on using the repository browser.