j1-template 2022.5.2 → 2022.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (358) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/themes/j1/layouts/content_generator_news_panel_posts.html +61 -40
  3. data/_includes/themes/j1/layouts/content_generator_page.html +22 -22
  4. data/_includes/themes/j1/layouts/content_generator_post.html +1 -1
  5. data/_includes/themes/j1/layouts/layout_metadata_generator.html +13 -79
  6. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/about_box.proc +0 -0
  7. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/contacts_box.proc +0 -0
  8. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/issue.proc +0 -0
  9. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/legal_statements.proc +0 -0
  10. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/links_box.proc +0 -0
  11. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/news_box.proc +0 -0
  12. data/_includes/themes/j1/{blocks → procedures/blocks}/footer/boxes/social_media_icons.proc +0 -0
  13. data/_includes/themes/j1/procedures/blocks/get_wave.proc +211 -0
  14. data/_includes/themes/j1/procedures/collections/create_collection_article_preview.proc +1 -1
  15. data/_includes/themes/j1/procedures/global/create_word_cloud.proc +1 -1
  16. data/_includes/themes/j1/procedures/posts/collate_timeline.proc +2 -2
  17. data/_includes/themes/j1/procedures/posts/pager.proc +9 -10
  18. data/_layouts/default.html +5 -1
  19. data/apps/private/README.txt +1 -0
  20. data/apps/protected/README.txt +1 -0
  21. data/apps/public/README.txt +1 -0
  22. data/assets/data/banner.html +38 -8
  23. data/assets/data/footer.html +31 -11
  24. data/assets/data/panel.html +118 -27
  25. data/assets/themes/j1/adapter/js/attic.js +4 -4
  26. data/assets/themes/j1/adapter/js/comments.js +18 -7
  27. data/assets/themes/j1/adapter/js/waves.js +227 -0
  28. data/assets/themes/j1/core/css/icon-fonts/fontawesome.min.css +1 -1
  29. data/assets/themes/j1/core/css/icon-fonts/mdi.min.css +1 -1
  30. data/assets/themes/j1/core/css/icon-fonts/mdil.min.css +1 -1
  31. data/assets/themes/j1/core/css/themes/bootstrap/bootstrap.css +92 -74
  32. data/assets/themes/j1/core/css/themes/bootstrap/bootstrap.min.css +5 -3
  33. data/assets/themes/j1/core/css/themes/theme_vapor/bootstrap.css +92 -74
  34. data/assets/themes/j1/core/css/themes/theme_vapor/bootstrap.min.css +5 -3
  35. data/assets/themes/j1/core/css/themes/unodark/bootstrap.css +105 -138
  36. data/assets/themes/j1/core/css/themes/unodark/bootstrap.min.css +5 -3
  37. data/assets/themes/j1/core/css/themes/unolight/bootstrap.css +457 -262
  38. data/assets/themes/j1/core/css/themes/unolight/bootstrap.min.css +26 -15
  39. data/assets/themes/j1/core/css/vendor.css +11 -8
  40. data/assets/themes/j1/core/css/vendor.min.css +1 -1
  41. data/assets/themes/j1/core/fonts/fontawesome_5/LICENSE.txt +34 -0
  42. data/assets/themes/j1/core/fonts/material_design_icons/LICENSE.txt +97 -0
  43. data/assets/themes/j1/core/fonts/material_design_icons_light/LICENSE.txt +92 -0
  44. data/assets/themes/j1/core/fonts/roboto/LICENSE.txt +11 -0
  45. data/assets/themes/j1/core/js/template.js +419 -746
  46. data/assets/themes/j1/core/js/template.min.js.map +1 -1
  47. data/assets/themes/j1/modules/backstretch/js/backstretch.js +1 -1
  48. data/assets/themes/j1/modules/backstretch/js/backstretch.min.js +1 -1
  49. data/assets/themes/j1/modules/bokeh/LICENSE.txt +28 -0
  50. data/assets/themes/j1/modules/jquery/js/extensions/hasClass.js +17 -0
  51. data/assets/themes/j1/modules/jquery/js/extensions/hasClass.min.js +17 -0
  52. data/assets/themes/j1/modules/jquery/js/extensions/removeClass.js +18 -0
  53. data/assets/themes/j1/modules/jquery/js/extensions/removeClass.min.js +17 -0
  54. data/assets/themes/j1/modules/later/LICENSE.txt +21 -0
  55. data/assets/themes/j1/modules/log4javascript/license.txt +201 -0
  56. data/assets/themes/j1/modules/lunr/stopwords/de.txt +229 -0
  57. data/assets/themes/j1/modules/lunr/stopwords/en.txt +119 -0
  58. data/assets/themes/j1/modules/masterslider/LICENSE.txt +621 -0
  59. data/assets/themes/j1/modules/masterslider/README.txt +531 -0
  60. data/assets/themes/j1/modules/msDropdown/LICENSE.txt +20 -0
  61. data/assets/themes/j1/modules/nbinteract-core/LICENSE.txt +60 -0
  62. data/assets/themes/j1/modules/rouge/css/themes.txt +46 -0
  63. data/assets/themes/j1/modules/vega/LICENSE.txt +27 -0
  64. data/lib/j1/version.rb +1 -1
  65. data/lib/starter_web/Gemfile +11 -7
  66. data/lib/starter_web/README.md +5 -5
  67. data/lib/starter_web/_config.yml +199 -135
  68. data/lib/starter_web/_data/blocks/banner.yml +18 -2
  69. data/lib/starter_web/_data/blocks/defaults/footer.yml +3 -1
  70. data/lib/starter_web/_data/blocks/defaults/panel.yml +4 -0
  71. data/lib/starter_web/_data/blocks/footer.yml +12 -1
  72. data/lib/starter_web/_data/blocks/panel.yml +88 -19
  73. data/lib/starter_web/_data/j1_config.yml +2 -2
  74. data/lib/starter_web/_data/layouts/collection.yml +0 -9
  75. data/lib/starter_web/_data/layouts/home.yml +21 -30
  76. data/lib/starter_web/_data/layouts/news_panel_posts.yml +0 -9
  77. data/lib/starter_web/_data/layouts/page.yml +0 -9
  78. data/lib/starter_web/_data/layouts/post.yml +0 -9
  79. data/lib/starter_web/_data/modules/blog_navigator.yml +6 -0
  80. data/lib/starter_web/_data/modules/defaults/blog_navigator.yml +15 -8
  81. data/lib/starter_web/_data/modules/defaults/cookieconsent.yml +5 -4
  82. data/lib/starter_web/_data/modules/defaults/navigator.yml +1 -1
  83. data/lib/starter_web/_data/modules/defaults/waves.yml +32 -0
  84. data/lib/starter_web/_data/modules/navigator_menu.yml +48 -120
  85. data/lib/starter_web/_data/modules/waves.yml +32 -0
  86. data/lib/starter_web/_data/plugins/defaults/feed.yml +82 -0
  87. data/lib/starter_web/_data/plugins/defaults/seo-tags.yml +65 -0
  88. data/lib/starter_web/_data/plugins/defaults/sitemap.yml +66 -0
  89. data/lib/starter_web/_data/plugins/feed.yml +35 -0
  90. data/lib/starter_web/_data/plugins/seo-tags.yml +30 -0
  91. data/lib/starter_web/_data/plugins/sitemap.yml +30 -0
  92. data/lib/starter_web/_data/resources.yml +22 -0
  93. data/lib/starter_web/_data/templates/feed.xml +191 -0
  94. data/lib/starter_web/_data/templates/robots.txt +1 -0
  95. data/lib/starter_web/_data/templates/seo-tags.html +140 -0
  96. data/lib/starter_web/_data/templates/sitemap.xml +36 -0
  97. data/lib/starter_web/_includes/attributes.asciidoc +49 -47
  98. data/lib/starter_web/_includes/custom/static/bs5_accordion.html +84 -0
  99. data/lib/starter_web/_includes/custom/templates/bs5_accordion.html +103 -0
  100. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/admonition-block-answer.rb +0 -0
  101. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/admonition-block-question.rb +0 -0
  102. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/banner.rb +0 -0
  103. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/callout.rb +0 -0
  104. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/carousel-block.rb +0 -0
  105. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/conum.rb +0 -0
  106. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/fab-icon-inline.rb +0 -0
  107. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/fas-icon-inline.rb +0 -0
  108. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/flag-icon-inline.rb +0 -0
  109. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/gallery-block.rb +0 -0
  110. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/gist-block.rb +0 -0
  111. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/iconify-icon-inline.rb +0 -0
  112. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/lightbox-block.rb +0 -0
  113. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/lorem_inline.rb +0 -0
  114. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/masterslider-block.rb +0 -0
  115. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/mdi-icon-inline.rb +0 -0
  116. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/panel.rb +0 -0
  117. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/range-slider-block.rb +0 -0
  118. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/shout-block.rb +0 -0
  119. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/textbook-block.rb +0 -0
  120. data/lib/starter_web/_plugins/{asciidoctor-extensions → asciidoctor}/twitter-emoji-inline.rb +0 -0
  121. data/lib/starter_web/_plugins/{debug.rb → filter/debug.rb} +0 -0
  122. data/lib/starter_web/_plugins/{encodeBase64.rb → filter/encodeBase64.rb} +0 -0
  123. data/lib/starter_web/_plugins/{encryptAES.rb → filter/encryptAES.rb} +0 -0
  124. data/lib/starter_web/_plugins/{filters.rb → filter/filters.rb} +11 -0
  125. data/lib/starter_web/_plugins/{minifyJS.rb → filter/minifyJS.rb} +0 -0
  126. data/lib/starter_web/_plugins/{minifyJSON.rb → filter/minifyJSON.rb} +0 -0
  127. data/lib/starter_web/_plugins/{prettify.rb → filter/prettify.rb} +0 -0
  128. data/lib/starter_web/_plugins/filter/xml_prettify.rb +36 -0
  129. data/lib/starter_web/_plugins/{symlink_watcher.rb → helper/symlink_watcher.rb} +0 -0
  130. data/lib/starter_web/_plugins/{date-i18n.rb → i18n/date.rb} +1 -1
  131. data/lib/starter_web/_plugins/{lunr_index.rb → index/lunr.rb} +38 -35
  132. data/lib/starter_web/_plugins/seo/j1-feed.rb +268 -0
  133. data/lib/starter_web/_plugins/seo/j1-seo-tags.rb +717 -0
  134. data/lib/starter_web/_plugins/seo/j1-sitemap.rb +140 -0
  135. data/lib/starter_web/assets/images/banner/scalable/wave.svg +13 -0
  136. data/lib/starter_web/assets/images/blocks/waves/scalable/1280x100/wave-1.svg +63 -0
  137. data/lib/starter_web/assets/images/blocks/waves/scalable/1280x100/wave-2.svg +60 -0
  138. data/lib/starter_web/assets/images/blocks/waves/scalable/1280x100/wave-3.svg +64 -0
  139. data/lib/starter_web/assets/images/blocks/waves/scalable/1280x100/wave-4.svg +62 -0
  140. data/lib/starter_web/assets/images/blocks/waves/scalable/1920x100/wave-1.svg +64 -0
  141. data/lib/starter_web/assets/images/blocks/waves/scalable/1920x100/wave-2.svg +60 -0
  142. data/lib/starter_web/assets/images/blocks/waves/scalable/1920x100/wave-3.svg +65 -0
  143. data/lib/starter_web/assets/images/blocks/waves/scalable/1920x100/wave-4.svg +62 -0
  144. data/lib/starter_web/assets/images/collections/blog/featured/dynamic-web-access.png +0 -0
  145. data/lib/starter_web/assets/images/collections/blog/featured/jamstack-generators.png +0 -0
  146. data/lib/starter_web/assets/images/collections/blog/featured/static-web-access.png +0 -0
  147. data/lib/starter_web/assets/images/icons/jekyll/logo-2x.png +0 -0
  148. data/lib/starter_web/assets/images/icons/jekyll/octojekyll.png +0 -0
  149. data/lib/starter_web/assets/images/modules/attics/1280x800/j1-template.png +0 -0
  150. data/lib/starter_web/assets/images/modules/attics/1280x800/jekyll-generator.png +0 -0
  151. data/lib/starter_web/assets/images/modules/attics/1280x800jekyll-generator.jpg +0 -0
  152. data/lib/starter_web/assets/images/modules/attics/1920x1280/_ben-kolde.jpg +0 -0
  153. data/lib/starter_web/assets/images/modules/attics/1920x1280/_moritz-kindler.jpg +0 -0
  154. data/lib/starter_web/assets/images/modules/attics/1920x1280/alina-grubnyak.jpg +0 -0
  155. data/lib/starter_web/assets/images/modules/attics/1920x1280/andrea-badino.jpg +0 -0
  156. data/lib/starter_web/assets/images/modules/attics/1920x1280/brad-neathery.jpg +0 -0
  157. data/lib/starter_web/assets/images/modules/attics/1920x1280/bruno-figueiredo.jpg +0 -0
  158. data/lib/starter_web/assets/images/modules/attics/1920x1280/fly-d.jpg +0 -0
  159. data/lib/starter_web/assets/images/modules/attics/1920x1280/guillaume-bolduc.jpg +0 -0
  160. data/lib/starter_web/assets/images/modules/attics/1920x1280/melanie-deziel.jpg +0 -0
  161. data/lib/starter_web/assets/images/modules/attics/1920x1280/milad-fakurian.jpg +0 -0
  162. data/lib/starter_web/assets/images/modules/attics/1920x1280/quino-al-2.jpg +0 -0
  163. data/lib/starter_web/assets/images/modules/attics/lunr-1280x800.jpg +0 -0
  164. data/lib/starter_web/assets/images/modules/attics/no-time-1920x1280.jpg +0 -0
  165. data/lib/starter_web/assets/images/modules/gallery/mega_cities/author.txt +75 -0
  166. data/lib/starter_web/assets/images/pages/egrid/bg.png +0 -0
  167. data/lib/starter_web/assets/images/pages/egrid/black_denim.png +0 -0
  168. data/lib/starter_web/assets/images/pages/egrid/explanation.png +0 -0
  169. data/lib/starter_web/assets/images/pages/egrid/html_markup.png +0 -0
  170. data/lib/starter_web/assets/images/pages/egrid/large/1.jpg +0 -0
  171. data/lib/starter_web/assets/images/pages/egrid/large/10.jpg +0 -0
  172. data/lib/starter_web/assets/images/pages/egrid/large/11.jpg +0 -0
  173. data/lib/starter_web/assets/images/pages/egrid/large/12.jpg +0 -0
  174. data/lib/starter_web/assets/images/pages/egrid/large/13.jpg +0 -0
  175. data/lib/starter_web/assets/images/pages/egrid/large/14.jpg +0 -0
  176. data/lib/starter_web/assets/images/pages/egrid/large/15.jpg +0 -0
  177. data/lib/starter_web/assets/images/pages/egrid/large/16.jpg +0 -0
  178. data/lib/starter_web/assets/images/pages/egrid/large/17.jpg +0 -0
  179. data/lib/starter_web/assets/images/pages/egrid/large/18.jpg +0 -0
  180. data/lib/starter_web/assets/images/pages/egrid/large/19.jpg +0 -0
  181. data/lib/starter_web/assets/images/pages/egrid/large/2.jpg +0 -0
  182. data/lib/starter_web/assets/images/pages/egrid/large/20.jpg +0 -0
  183. data/lib/starter_web/assets/images/pages/egrid/large/3.jpg +0 -0
  184. data/lib/starter_web/assets/images/pages/egrid/large/4.jpg +0 -0
  185. data/lib/starter_web/assets/images/pages/egrid/large/5.jpg +0 -0
  186. data/lib/starter_web/assets/images/pages/egrid/large/6.jpg +0 -0
  187. data/lib/starter_web/assets/images/pages/egrid/large/7.jpg +0 -0
  188. data/lib/starter_web/assets/images/pages/egrid/large/8.jpg +0 -0
  189. data/lib/starter_web/assets/images/pages/egrid/large/9.jpg +0 -0
  190. data/lib/starter_web/assets/images/pages/egrid/loading.gif +0 -0
  191. data/lib/starter_web/assets/images/pages/egrid/loading_dark.gif +0 -0
  192. data/lib/starter_web/assets/images/pages/egrid/nav-icon.png +0 -0
  193. data/lib/starter_web/assets/images/pages/egrid/nav.png +0 -0
  194. data/lib/starter_web/assets/images/pages/egrid/small/1.jpg +0 -0
  195. data/lib/starter_web/assets/images/pages/egrid/small/10.jpg +0 -0
  196. data/lib/starter_web/assets/images/pages/egrid/small/11.jpg +0 -0
  197. data/lib/starter_web/assets/images/pages/egrid/small/12.jpg +0 -0
  198. data/lib/starter_web/assets/images/pages/egrid/small/13.jpg +0 -0
  199. data/lib/starter_web/assets/images/pages/egrid/small/14.jpg +0 -0
  200. data/lib/starter_web/assets/images/pages/egrid/small/15.jpg +0 -0
  201. data/lib/starter_web/assets/images/pages/egrid/small/16.jpg +0 -0
  202. data/lib/starter_web/assets/images/pages/egrid/small/17.jpg +0 -0
  203. data/lib/starter_web/assets/images/pages/egrid/small/18.jpg +0 -0
  204. data/lib/starter_web/assets/images/pages/egrid/small/19.jpg +0 -0
  205. data/lib/starter_web/assets/images/pages/egrid/small/1a.jpg +0 -0
  206. data/lib/starter_web/assets/images/pages/egrid/small/2.jpg +0 -0
  207. data/lib/starter_web/assets/images/pages/egrid/small/20.jpg +0 -0
  208. data/lib/starter_web/assets/images/pages/egrid/small/3.jpg +0 -0
  209. data/lib/starter_web/assets/images/pages/egrid/small/4.jpg +0 -0
  210. data/lib/starter_web/assets/images/pages/egrid/small/5.jpg +0 -0
  211. data/lib/starter_web/assets/images/pages/egrid/small/6.jpg +0 -0
  212. data/lib/starter_web/assets/images/pages/egrid/small/7.jpg +0 -0
  213. data/lib/starter_web/assets/images/pages/egrid/small/8.jpg +0 -0
  214. data/lib/starter_web/assets/images/pages/egrid/small/9.jpg +0 -0
  215. data/lib/starter_web/assets/images/pages/roundtrip/500_themes/themes-menu-1280x800.jpg +0 -0
  216. data/lib/starter_web/assets/images/promo/home/screenshot.jpg +0 -0
  217. data/lib/starter_web/assets/images/promo/jekyll/jekyll-generator.png +0 -0
  218. data/lib/starter_web/assets/images/promo/jekyll/jekyll-og.png +0 -0
  219. data/lib/starter_web/collections/asciidoc_skeletons/simple-post/_posts/yyyy-mm-dd-your-post-name.asciidoc +13 -10
  220. data/lib/starter_web/collections/posts/public/featured/_posts/0000-00-00-welcome-to-j1.adoc.erb +8 -3
  221. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.adoc +11 -6
  222. data/lib/starter_web/collections/posts/public/featured/_posts/2021-02-01-site-generators.adoc +13 -10
  223. data/lib/starter_web/collections/posts/public/featured/_posts/2022-02-01-about-j1.adoc +12 -9
  224. data/lib/starter_web/collections/posts/public/featured/_posts/_includes/attributes.asciidoc +2 -2
  225. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-01-post-wiki-series.adoc +13 -5
  226. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-02-post-wiki-series.adoc +13 -6
  227. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-03-post-wiki-series.adoc +13 -6
  228. data/lib/starter_web/index.html +85 -60
  229. data/lib/starter_web/package.json +1 -1
  230. data/lib/starter_web/pages/public/about/features.adoc +15 -7
  231. data/lib/starter_web/pages/public/about/reporting_issues.adoc +13 -5
  232. data/lib/starter_web/pages/public/about/site.adoc +2 -6
  233. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/000_intro.adoc +14 -7
  234. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/100_converter.adoc +15 -7
  235. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/200_themes.adoc +14 -6
  236. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/_includes/documents/100_converter/111_about_the_converter.asciidoc +15 -10
  237. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/documentation.adoc +9 -8
  238. data/lib/starter_web/pages/public/asciidoc_skeletons/multi-document/multi.adoc +9 -8
  239. data/lib/starter_web/pages/public/asciidoc_skeletons/simple-document/simple.adoc +9 -8
  240. data/lib/starter_web/pages/public/blog/navigator/{archive.html → archive/allview.html} +53 -26
  241. data/lib/starter_web/pages/public/blog/navigator/archive/categoryview.html +45 -20
  242. data/lib/starter_web/pages/public/blog/navigator/archive/dateview.html +49 -19
  243. data/lib/starter_web/pages/public/blog/navigator/archive/tagview.html +57 -53
  244. data/lib/starter_web/pages/public/blog/navigator/index.html +212 -35
  245. data/lib/starter_web/pages/public/features/general.adoc +12 -30
  246. data/lib/starter_web/pages/public/features/template.adoc +9 -33
  247. data/lib/starter_web/pages/public/learn/quickstart.adoc +10 -8
  248. data/lib/starter_web/pages/public/learn/roundtrip/_includes/attributes.asciidoc +0 -7
  249. data/lib/starter_web/pages/public/learn/roundtrip/_includes/documents/410_table_bs_modal_examples.asciidoc +2 -2
  250. data/lib/starter_web/pages/public/learn/roundtrip/_includes/documents/themes_bootstrap.asciidoc +51 -0
  251. data/lib/starter_web/pages/public/learn/roundtrip/_includes/documents/themes_rouge.asciidoc +110 -0
  252. data/lib/starter_web/pages/public/learn/roundtrip/asciidoc_extensions.adoc +11 -9
  253. data/lib/starter_web/pages/public/learn/roundtrip/bootstrap_themes.adoc +80 -0
  254. data/lib/starter_web/pages/public/learn/roundtrip/icon_fonts.adoc +9 -7
  255. data/lib/starter_web/pages/public/learn/roundtrip/{quicksearch.adoc → lunr_search.adoc} +23 -18
  256. data/lib/starter_web/pages/public/learn/roundtrip/{bs_modals_extentions.adoc → modal_extentions.adoc} +23 -24
  257. data/lib/starter_web/pages/public/learn/roundtrip/present_images.adoc +12 -11
  258. data/lib/starter_web/pages/public/learn/roundtrip/present_videos.adoc +14 -10
  259. data/lib/starter_web/pages/public/learn/roundtrip/{responsive_tables_extensions.adoc → responsive_tables.adoc} +16 -13
  260. data/lib/starter_web/pages/public/learn/roundtrip/{typography.adoc → template_typography.adoc} +8 -7
  261. data/lib/starter_web/pages/public/learn/where_to_go.adoc +12 -29
  262. data/lib/starter_web/pages/public/legal/de/100_copyright.adoc +1 -1
  263. data/lib/starter_web/pages/public/legal/de/100_impress.adoc +1 -1
  264. data/lib/starter_web/pages/public/legal/de/300_privacy.adoc +1 -1
  265. data/lib/starter_web/pages/public/legal/de/400_comment_policy.adoc +3 -1
  266. data/lib/starter_web/pages/public/legal/en/100_copyright.adoc +7 -5
  267. data/lib/starter_web/pages/public/legal/en/200_impress.adoc +7 -5
  268. data/lib/starter_web/pages/public/legal/en/300_privacy.adoc +7 -5
  269. data/lib/starter_web/pages/public/legal/en/400_comment_policy.adoc +9 -5
  270. data/lib/starter_web/pages/public/panels/intro_panel/panel.adoc +11 -10
  271. data/lib/starter_web/pages/public/plans/plans.adoc +8 -5
  272. data/lib/starter_web/pages/public/previewer/preview_bootstrap_theme.adoc +15 -38
  273. data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
  274. data/lib/starter_web/utilsrv/package.json +1 -1
  275. metadata +170 -128
  276. data/_includes/themes/j1/blocks/footer/generator.html +0 -151
  277. data/_includes/themes/j1/layouts/content_generator_app.html +0 -32
  278. data/_includes/themes/j1/layouts/content_generator_article_navigator.html +0 -176
  279. data/_includes/themes/j1/layouts/content_generator_blog_archive.html +0 -251
  280. data/_layouts/app.html +0 -65
  281. data/_layouts/article_navigator.html +0 -66
  282. data/_layouts/blog_archive.html +0 -64
  283. data/assets/data/article_navigator/index.html +0 -51
  284. data/lib/starter_web/_data/layouts/app.yml +0 -172
  285. data/lib/starter_web/_data/layouts/article_navigator.yml +0 -173
  286. data/lib/starter_web/_data/layouts/blog_archive.yml +0 -191
  287. data/lib/starter_web/_includes/custom/static/custom_teaser.html +0 -64
  288. data/lib/starter_web/assets/images/banner/scalable/readme +0 -0
  289. data/lib/starter_web/assets/images/collections/blog/featured/dynamic-web-access.jpg +0 -0
  290. data/lib/starter_web/assets/images/collections/blog/featured/jamstack-generators-2.jpg +0 -0
  291. data/lib/starter_web/assets/images/collections/blog/featured/markus-spiske-2.jpg +0 -0
  292. data/lib/starter_web/assets/images/collections/blog/featured/static-web-access.jpg +0 -0
  293. data/lib/starter_web/assets/images/collections/blog/featured/welcome-to-j1-template.jpg +0 -0
  294. data/lib/starter_web/assets/images/collections/blog/featured/what-is-a-baseurl.jpg +0 -0
  295. data/lib/starter_web/assets/images/collections/blog/series/j1_using_docker/j1_docker_banner.1280x500.png +0 -0
  296. data/lib/starter_web/assets/images/collections/blog/series/j1_using_docker/kinematic_alpha.1280x600.png +0 -0
  297. data/lib/starter_web/assets/images/collections/blog/series/j1_using_docker/kinematic_j1.1280x300.png +0 -0
  298. data/lib/starter_web/assets/images/collections/blog/series/j1_using_docker/windows_docker_banner.1280x500.png +0 -0
  299. data/lib/starter_web/assets/images/modules/attics/1920x1280/moritz-kindler.jpg +0 -0
  300. data/lib/starter_web/assets/videos/gallery/dailymotion/meditation.jpg +0 -0
  301. data/lib/starter_web/assets/videos/gallery/dailymotion/pilates.jpg +0 -0
  302. data/lib/starter_web/assets/videos/gallery/html5/video1.mp4 +0 -0
  303. data/lib/starter_web/assets/videos/gallery/html5/video2.mp4 +0 -0
  304. data/lib/starter_web/assets/videos/gallery/kick-it-old-school-poster.jpg +0 -0
  305. data/lib/starter_web/assets/videos/gallery/nye-party-shop-poster.jpg +0 -0
  306. data/lib/starter_web/assets/videos/gallery/stay-colorful-poster.jpg +0 -0
  307. data/lib/starter_web/assets/videos/gallery/video1-poster.jpg +0 -0
  308. data/lib/starter_web/assets/videos/gallery/video1-thumb.jpg +0 -0
  309. data/lib/starter_web/assets/videos/gallery/video2-poster.jpg +0 -0
  310. data/lib/starter_web/assets/videos/gallery/video2-thumb.jpg +0 -0
  311. data/lib/starter_web/assets/videos/gallery/video_adele-poster.jpg +0 -0
  312. data/lib/starter_web/assets/videos/gallery/video_gaga-poster.jpg +0 -0
  313. data/lib/starter_web/assets/videos/gallery/video_gwen-poster.jpg +0 -0
  314. data/lib/starter_web/assets/videos/gallery/video_michelle-poster.jpg +0 -0
  315. data/lib/starter_web/assets/videos/gallery/vk/hai.jpg +0 -0
  316. data/lib/starter_web/assets/videos/gallery/vk/otter.jpg +0 -0
  317. data/lib/starter_web/assets/videos/gallery/voice_kids_de_2021/battle.jpg +0 -0
  318. data/lib/starter_web/assets/videos/gallery/voice_kids_de_2021/ben.jpg +0 -0
  319. data/lib/starter_web/assets/videos/gallery/voice_kids_de_2021/constance.jpg +0 -0
  320. data/lib/starter_web/assets/videos/gallery/voice_kids_de_2021/elisa.jpg +0 -0
  321. data/lib/starter_web/assets/videos/headers/present_videos/still/underground-broadway.jpg +0 -0
  322. data/lib/starter_web/assets/videos/headers/present_videos/underground-broadway.mp4 +0 -0
  323. data/lib/starter_web/assets/videos/tiktok/einhorn.jpg +0 -0
  324. data/lib/starter_web/assets/videos/tiktok/waluschka.jpg +0 -0
  325. data/lib/starter_web/pages/public/jupyter/examples/distributed/j1-circular-times-table.adoc +0 -142
  326. data/lib/starter_web/pages/public/jupyter/examples/distributed/j1-common-used-widgets.adoc +0 -232
  327. data/lib/starter_web/pages/public/jupyter/examples/distributed/j1-odes-in-python.adoc +0 -115
  328. data/lib/starter_web/pages/public/jupyter/examples/localized/j1_climate-change-forecast.adoc +0 -109
  329. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_circular_times_table.ipynb +0 -12382
  330. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_climate_change_forecast.ipynb +0 -1058
  331. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_docs_example_dynamic.ipynb +0 -14478
  332. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_interactive_widgets.ipynb +0 -442
  333. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets.ipynb +0 -523
  334. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_bar_chart.ipynb +0 -89
  335. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_hist_chart.ipynb +0 -87
  336. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_line_chart.ipynb +0 -90
  337. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_question_multiple_choice.ipynb +0 -64
  338. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_question_short_answer.ipynb +0 -122
  339. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_scatter_chart.ipynb +0 -89
  340. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_nbi_widgets_scatter_drag_chart.ipynb +0 -87
  341. data/lib/starter_web/pages/public/jupyter/notebooks/j1/j1_odes_in_python.ipynb +0 -15227
  342. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_circular_times_table.html +0 -747
  343. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_climate_change_forecast.html +0 -1250
  344. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_docs_example_dynamic.html +0 -186
  345. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_interactive_widgets.html +0 -512
  346. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets.html +0 -629
  347. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_bar_chart.html +0 -95
  348. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_hist_chart.html +0 -93
  349. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_line_chart.html +0 -96
  350. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_question_multiple_choice.html +0 -70
  351. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_question_short_answer.html +0 -156
  352. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_scatter_chart.html +0 -95
  353. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_nbi_widgets_scatter_drag_chart.html +0 -93
  354. data/lib/starter_web/pages/public/jupyter/notebooks/textbooks/j1_odes_in_python.html +0 -955
  355. data/lib/starter_web/pages/public/jupyter/where_to_go.adoc +0 -232
  356. data/lib/starter_web/pages/public/learn/roundtrip/_includes/google-ad.js +0 -130
  357. data/lib/starter_web/pages/public/learn/roundtrip/themes.adoc +0 -253
  358. data/lib/starter_web/pages/public/se/se-fake.adoc +0 -48
@@ -0,0 +1,531 @@
1
+ == Master Slider
2
+
3
+ Contributors: averta, averta_support
4
+ Donate link: http://averta.net/
5
+ License: GPLv3
6
+ License URI: http://www.gnu.org/licenses/gpl.html
7
+ Tags: slider, image slider, wordpress slider, video slider, best slider plugin, slideshow, swipe, touch slider, content slider, SEO, vertical slider, HTML5 slider, hardware accelerate, animation, mobile slider, iOS, android, youtube slider, horizontal slider, responsive slider, fullscreen slider, post slider, photo slider, online album, mobile slider, WordPress slider,wpml, ,ultisite, wistia, woocommerce, product slider, woocommerce slider, portfolio, gallery, lightweight slider
8
+ Requires PHP: 5.4
9
+ Requires at least: 5.0
10
+ Tested up to: 5.9.0
11
+ Stable tag: 3.8.1
12
+ Version: Lite version v2.85.13 (Feb 2022)
13
+
14
+ Build SEO friendly sliders fast and easy with Master Slider. The most advanced
15
+ responsive HTML5 WordPress slider plugin, with touch swipe navigation that works
16
+ smoothly on desktop and devices.
17
+
18
+
19
+ == Description
20
+
21
+ >[Demos](http://avt.li/mswftem "Live demos of Master Slider free version") | [Features](http://avt.li/mswfea "All features") | [Documentation](http://avt.li/mswfdoc "Master Slider documentation") | [All Video tutorials](http://avt.li/msfvids "Watch all video tutorials") | [Support](http://wordpress.org/support/plugin/master-slider "Free support")
22
+
23
+ [youtube https://www.youtube.com/watch?v=nyjpGEHwOn8]
24
+
25
+
26
+ == Overview
27
+
28
+ Master Slider is a free SEO friendly, responsive image and video slider that
29
+ truly works on all major devices, and it has super smooth hardware accelerated
30
+ transitions. It supports touch navigation with pure swipe gesture that you have
31
+ never experienced before.
32
+ With our 8 Starter Samples, creating slideshows has never been so fast and
33
+ enjoyable!
34
+
35
+ Looking for a perfect Free WordPress theme optimized for both Master Slider
36
+ and Elementor? [Get Phlox theme](http://avt.li/msphpp "Phlox theme - Free Minimal and Responsive WordPress Theme")
37
+
38
+
39
+ Master Slider is built using WordPress best practices both on the front and
40
+ the back end. This results in an efficient, robust and intuitive plugin. It
41
+ works with any theme, including WordPress Default Themes.
42
+
43
+
44
+ == Features
45
+
46
+ • The Most SEO Friendly Slider Plugin in Market!
47
+ • Easy to Use Interface
48
+ • Simply Create Fully Responsive and Device Optimized Sliders with 8 starter samples
49
+ • Use Sliders Cross-browser and Works Well on All Popular Browsers! (Tested IE8+ and other modern browsers)
50
+ • Superlative Lightweight Outputs in Compare with Other Plugins
51
+ • HTML5 Valid and Clean Markups
52
+ • Touch Swipe Navigation
53
+ • Manage Slideshows with Autoplay Timing Options!
54
+ • 24h Support with Expert Agents (check out our rates on WordPress)
55
+ • Drag and Drop Slider Creation
56
+ • Extremely User Friendly Admin Panel
57
+ • CSS3 Transitions with jQuery Fallback
58
+ • Hardware Accelerated CSS3 3D Transforms
59
+ • Optimized for Any Screen Sizes and Touch Devices
60
+ • Smart Loading Assets
61
+ • 6+ Interactive Slide Transitions
62
+ • Smart auto crop
63
+ • Loop and linear sliding
64
+ • Shuffle Ordering Slides Option
65
+ • Auto-height Slider
66
+ • Vertical and Horizontal Direction Navigation
67
+ • Fully Customizable Thumbnail and Tabs
68
+ • Vertical and Horizontal Bullets
69
+ • Mouse Wheel Navigation
70
+ • Customizable Arrows
71
+ • Exclusive Widget and Shortcodes
72
+ • Scroll Handle Slide Indicator
73
+ • Smart Memory Management
74
+ • 6 Modern and Unique Skins
75
+ • Timer-bar and Circle Timer UI Controls
76
+ • Custom User Roles and Capabilities
77
+ • 5 Image Positioning Options (fill, fit, tile,...)
78
+ • Advanced Import And Export Tool
79
+ • Built-in Cache Boosting
80
+ • Translate Ready
81
+ • Multisite Compatible
82
+ • Extensive Developer API
83
+ * [Full List of Features](http://masterslider.com/wordpress/free/?mslf)
84
+
85
+
86
+ == Compatible Browsers
87
+
88
+ * IE8+
89
+ * Firefox
90
+ * Safari
91
+ * Opera
92
+ * Chrome
93
+ * iOS browser
94
+ * Android browser
95
+
96
+
97
+ == Master Slider Pro Features
98
+
99
+ * Full-width, Full-screen and Boxed Layout
100
+ * Post Slider - with Advanced Filtering Tool (Any Post-type)
101
+ * WooCommerce Product Slider - With Advanced Filtering Tool
102
+ * Flickr Slider - Make Slider Dynamically From Flickr Photosets or User Latest Photos
103
+ * Facebook Slider - Make Image Gallery Dynamically From Facebook Public Images
104
+ * HD Video Backgrounds for Slides
105
+ * Embedding YouTube and Vimeo Videos
106
+ * Animated Layers
107
+ * 4 Different Layer Types (Text, Image, Button and Video)
108
+ * Huge Verity of Layer Transitions
109
+ * Transition In and Out Available for Each Layer
110
+ * Hotspots and Tooltips over Slides
111
+ * Deep-linking
112
+ * Parallax Effect while Scrolling
113
+ * Layers Parallax Effect while Swiping
114
+ * Layers Parallax Effect while Moving Mouse over Slide
115
+ * Boxed with Visible Nearby Slides
116
+ * Auto Height and Auto Fill Layout
117
+ * Binding Special Actions to Layers (Go to slide, scroll down, play, pause, ..)
118
+ * Custom Pattern and Color Overlay
119
+ * Auto Resizing and Aligning Layers while Resizing
120
+ * Option to Linking Slides, Layers and Hotspots
121
+ * 30+ Ready to Use Sample Sliders (One Click Import)
122
+ * Nice Looking and Easy to Use Layout
123
+ * WYSIWYG Drag & Drop Editor
124
+ * Easy to Use Timeline animation tool
125
+ * Visual Style Editor
126
+ * Visual Transition Effect Editor
127
+ * Visual Button Editor
128
+ * Easy Aligning Layers over Stage
129
+ * Snapping Option on Drag & Drop Layers
130
+ * 9 Different Positioning Origin Points for Each Layer
131
+ * Realtime Animation Preview
132
+ * Moving Layers by Arrow Keys
133
+ * Using WordPress Native Text Editor
134
+ * Using Google Fonts (600+ Fonts)
135
+ * [Full List of Pro Features](http://masterslider.com/wordpress/pro/?mslf)
136
+
137
+
138
+ Upgrade to [Pro Version](http://masterslider.com/purchase/?mslf)
139
+
140
+
141
+ == Demo for PRO Version
142
+
143
+ * [Master Slider Demo Sliders](http://avt.li/mswptem)
144
+ * [Master Slider Features](http://avt.li/mswpfea)
145
+ * [Master Slider Manual](http://avt.li/mswpdoc)
146
+
147
+
148
+ == Documentation
149
+
150
+ If you have any question about working with "Master Slider", you can take a
151
+ look at [online documentations](http://masterslider.com/doc/wp/free/)
152
+
153
+
154
+ == Translation
155
+
156
+ French. Special thanks to [Thomas](http://www.thomasgrimaud.fr)
157
+ Brazilian Portuguese. Special thanks to [WebPress](http://www.themeforest.net/user/WebPress-CodeLayer)
158
+ Serbian. Special thanks to [Borisa Djuraskovic](http://www.webhostinghub.com)
159
+
160
+ You can start translating Master Slider by our
161
+ [online translation service](http://translate.averta.net/projects/masterslider/free-version).
162
+
163
+
164
+ == Installation (WordPress)
165
+
166
+ === Minimum Requirements
167
+
168
+ * WordPress 4.6 or greater
169
+ * PHP version 5.4 or greater
170
+ * MySQL version 5.0 or greater
171
+
172
+ **This section describes how to install the plugin and get it working**
173
+
174
+ === Automatic installation (easiest way)
175
+
176
+ To do an automatic install of Master Slider, log in to your WordPress
177
+ dashboard, navigate to the Plugins menu and click Add New.
178
+
179
+ In the search field type "Master Slider" and click Search Plugins. Once
180
+ you have found it you can install it by simply clicking "Install Now".
181
+
182
+ === Manual installation
183
+
184
+ **Uploading in WordPress Dashboard**
185
+
186
+ 1. Download `master-slider.zip`
187
+ 2. Navigate to the 'Add New' in the plugins dashboard
188
+ 3. Navigate to the 'Upload' area
189
+ 4. Select `master-slider.zip` from your computer
190
+ 5. Click 'Install Now'
191
+ 6. Activate the plugin in the Plugin dashboard
192
+
193
+ **Using FTP**
194
+
195
+ 1. Download `master-slider.zip`
196
+ 2. Extract the `master-slider` directory to your computer
197
+ 3. Upload the `master-slider` directory to the `/wp-content/plugins/` directory
198
+ 4. Activate the plugin in the Plugin dashboard
199
+
200
+ The WordPress codex contains [instructions on how to install a WordPress
201
+ plugin](http://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation).
202
+
203
+ === Updating
204
+
205
+ You can use automatic update to update the plugin safely.
206
+
207
+
208
+ == Frequently Asked Questions (Wordpress)
209
+
210
+ === Where can I find Master Slider documentation and user guides
211
+
212
+ If you have any question about working with "Master Slider", you can take
213
+ a look at [online documentations](http://docs.averta.net/display/MSWPF/)
214
+
215
+ === When I preview the slider in admin page everything looks fine, but
216
+ when I add it to my website the slider looks different. How can I fix that?
217
+
218
+ It is a known issue with few poor coded themes that can be easily fixed.
219
+ In fact, some styles in your theme conflicts with the styles in Master Slider.
220
+ You can simply submit a ticket in support section, our support agents will
221
+ advice you how to fix the conflicts.
222
+
223
+ === Will Master Slider work with my theme?
224
+
225
+ Master Slider works with any theme, including the default WordPress themes.
226
+
227
+ === Can you recommend a free theme that is optimized for Master Slider
228
+
229
+ Fortunately there are plenty of options out there, including the default
230
+ WordPress themes too. But the one that we recommend most is
231
+ [Phlox theme](http://avt.li/msphpp "Phlox theme - Free Minimal and Responsive WordPress Theme")
232
+ which is a free, versatile and optimized theme for Master Slider.
233
+
234
+ === I added text to slide (slide info), but it does not appear in slider
235
+
236
+ You need to add "slide info" control too. To do that, go for editing slider,
237
+ under "slider controls" tab, select and add "slide info" control
238
+
239
+ === After I've removed a slider, it still appears on my website
240
+
241
+ Maybe you have a cache plugin enabled on your website or Master Slider's
242
+ built-in cache is enabled.
243
+
244
+ == Where can I report bugs?
245
+
246
+ Bugs can be reported in our [support forums](http://wordpress.org/tags/master-slider).
247
+
248
+
249
+ == Screenshots
250
+
251
+ 1. Slider without thumbnail (light skin 1)
252
+ 2. Slider with thumbnail on bottom (light skin 1)
253
+ 3. Slider with thumbnail on right (light skin 5)
254
+ 4. Slider with thumbnail on left (light skin 3)
255
+ 5. Slider with slide info on right (light skin 3)
256
+ 6. Slider with slide info on bottom (light skin 1)
257
+ 7. Sliders listing table
258
+ 8. Slider setting
259
+ 9. Drag and Drop slide creation
260
+ 10. 6 Highly customizable slider controls
261
+ 11. Flexible slider controls
262
+
263
+
264
+ == Changelog
265
+
266
+ Version 3.8.1/ (10.02.2022)
267
+ - [Fixed]: An issue with mouse wheel in chrome fixed.
268
+
269
+ Version 3.8.0/ (03.02.2022)
270
+ - [Fixed]: An issue with ordering slides in WordPress 5.9 fixed.
271
+
272
+ Version 3.7.10/ (11.10.2021)
273
+ - [Fixed]: An issue which caused controls `autohide` option didn't work.
274
+
275
+ Version 3.7.9/ (19.09.2021)
276
+ - [Improvement]: Improvements for jQuery deprecated functions applied.
277
+
278
+ Version 3.7.5/ (06.05.2021)
279
+ - [Improvement]: Security improvements were applied.
280
+
281
+ Version 3.7.0/ (31.03.2021)
282
+ - [Improvement]: Compatibility with WordPress 5.7 applied.
283
+
284
+ Version 3.6.10/ (15.02.2021)
285
+ - [Fix] An issue with detecting css vendor prefix on webkit browsers fixed.
286
+
287
+ Version 3.6.8/ (13.02.2021)
288
+ - [Fix] An issue with applying transitions on new Edge browser fixed.
289
+
290
+ Version 3.6.2/ (08.09.2020)
291
+ - [Fix]: Minor bugs fix.
292
+
293
+ Version 3.6.0/ (15.08.2020)
294
+ - [Improvement]: Compatibility with WordPress 5.5.0 applied.
295
+ - [Fix]: Minor bugs fix.
296
+
297
+ Version 3.5.8/ (20.01.2020)
298
+ - [Improvement]: Minor bugs fix.
299
+ - [Fix]: Compatibility with PHP 7.4 applied.
300
+
301
+ Version 3.5.3/ (01.11.2018)
302
+ - [Fix]: Fixing an issue with deprecated functions.
303
+ - [Fix]: Compatibility with PHP 7.2 applied.
304
+
305
+ Version 3.5.1/ (06.05.2018)
306
+ - [Fix]: Addressed an issue with displaying some sliders in the admin panel.
307
+
308
+ Version 3.5.0/ (29.04.2018)
309
+ - [Fix]: Addressed an issue that prevents calling the slider callbacks.
310
+ - [Fix]: An issue with accessing the sample sliders panel fixed.
311
+
312
+ Version 3.4.4/ (18.04.2018)
313
+ - [Fix]: An issue with dynamic tags in tab control fixed.
314
+ - [Improvement]: Bug fix and performance improvement.
315
+
316
+ Version 3.4.1/ (17.12.2017)
317
+ - [Fix]: Improvement in wp transient API while object cache is enabled on some web hosts.
318
+
319
+ Version 3.3.0/ (25.11.2017)
320
+ - [Improvement]: Improvements and compatibility for WordPress 4.9.0 added.
321
+
322
+ Version 3.1.6/ (09.10.2017)
323
+ - [Improvement]: Minor bugs fix.
324
+
325
+ Version 3.1.1/ (17.08.2017)
326
+ - [Improvement]: Performance improvement and bug fix.
327
+
328
+ Version 3.0.2 / (12.07.2017)
329
+ - [Improvement]: Some minor bugs fixed.
330
+
331
+ Version 3.0.0 / (17.06.2017)
332
+ - [Fix]: An issue with overlay color for slides fixed.
333
+ - [Improvement]: The corresponding styles will be generated after duplicating the slider automatically.
334
+ - [Improvement]: Some minor bugs fixed.
335
+
336
+ Version 2.9.8 / (15.4.2017)
337
+ - [Fix]: Italian translation added
338
+ - [Fix]: Minor bugs fixed
339
+
340
+ Version 2.9.7 / (26.3.2017)
341
+ - [Fix]: A minor issue with PHP 7 fixed
342
+
343
+ Version 2.9.6 / (15.3.2017)
344
+ - [Fix]: Minor bugs fixes
345
+
346
+ Version 2.9.5 / (21.9.2016)
347
+ - [Fix]: Minor bugs fixes
348
+
349
+ Version 2.9.0 / (19.8.2016)
350
+ - [Improvement]: Better compatibility with Legacy WordPress themes
351
+ - [Fix]: Minor bugs fixes
352
+
353
+ Version 2.8.1 / (11.7.2016)
354
+ - [Improvement]: Security improvement
355
+
356
+ Version 2.7.1 / (4.10.2015)
357
+ - [Fix]: Minor issue with an undefined variable fixed
358
+
359
+ Version 2.7.0 / (26.9.2015)
360
+ - [Improvement]: Now the slide info sections with no conent are no longer visible
361
+ - [Improvement]: Now Master Slider is fully compatible with new upcoming translation service on wp.org
362
+ - [Improvement]: Now auto crop is disabled for thumbnail when user set a custom thumbnail
363
+
364
+ Version 2.6.4 / (22.9.2015)
365
+ - [Fix]: Legacy widget constructor replaced with new one
366
+
367
+ Version 2.6.3 / (12.9.2015)
368
+ - [Fix]: Addressed an issue with undefined IDs while adding shortcodes to WordPress editor
369
+ - [New]: Russian translation by: oharreg
370
+
371
+ Version 2.6.2 / (1.9.2015)
372
+ - [Fix]: Security improvement.
373
+
374
+ Version 2.5.1 / (12.7.2015)
375
+ - [New]: Plugin thumbnail changed.
376
+
377
+ Version 2.5.0 / (30.6.2015)
378
+ - [Fix]: Addressed an issue with IE9.
379
+ - [Improvement]: Under the hood improvement
380
+
381
+ Version 2.4.0 / (8.5.2015)
382
+ - [Improvement]: Some improvement for serving assets under SSL.
383
+ - [Fix]: Default minHeight changed to 0.
384
+ - [Fix]: Some CSS reset rules added to links on slider.
385
+
386
+ Version 2.4.0 / (7.5.2015)
387
+ - [New]: Arrows for the thumblist control added.
388
+ - [New]: Search box for searching through the sliders added.
389
+ - [New]: New option `minHeight` added which specifies min height value for the slider, it prevents slider to be displayed tiny in small screens.
390
+ - [New]: New option for thumblist to change the slides while moving mouse cursor over thumbnails.
391
+ - [New]: Brand new sticky preview and save button with new interface in admin panel.
392
+ - [Fix]: A conflict with new API changes in WP 4.2 for gallery fixed.
393
+ - [Fix]: An issue with some special characters in slide info fixed.
394
+ - [Improvement]: Interface improvement for slider box.
395
+ - [Improvement]: Improvement in slider performance.
396
+ - [Fix]: An issue with sorting sliders base on date_modified fixed.
397
+ - [Fix]: Escaping the brackets for rel attribute on slides.
398
+ - [Fix]: Addressed an issue while auto hide in controls did not function properly on touch devices.
399
+ - [Fix]: Addressed an issue while inserting larger numbers than slides number in preload field.
400
+ - [Fix]: An issue with encoding brackets in custom styles fixed
401
+ - [Fix]: An issue in calculating thumbnails width fixed.
402
+ - [Fix]: An issue in aligning thumbnails which doesn't have fillMode option fixed.
403
+ - [Improvement]: Improvements under the hood.
404
+ - Master Slider is 100% secure in vulnerability check
405
+
406
+ Version 2.2.1 / (6.4.2015)
407
+ - [Fix]: Some minor bugs fixed.
408
+
409
+ Version 2.2.1 / (21.3.2015)
410
+ - [New]: Introducing "Start On Hover" feature, to display the slider when it appears in browser viewport.
411
+ - [Improvement]: API methods updated
412
+ - [Fix]: Some minor JavaScript errors fixed.
413
+
414
+ Version 2.1.3 / (5.3.2015)
415
+ - [Fix]: Address an issue with rendering 3D transitions on firefox and mouse wheel
416
+ - [New]: French. Special thanks to Thomas:www.thomasgrimaud.fr
417
+ - [New]: Brazilian Portuguese. Special thanks to WebPress
418
+ - [New]: Serbian. Special thanks to Borisa Djuraskovic:www.webhostinghub.com
419
+ - [Fix]: Throwing error after destroying slider with API destroy method.
420
+ - [Fix]: Addressed a Javascript error in IE9.
421
+ - [Fix]: Addressed a bug which prevents using bracket in slide title and alt
422
+
423
+ Version 2.0.4 / (1.2.2015)
424
+ - [New]: New API added to let developers change default values in admin panel
425
+
426
+ Version 2.0.0 / (28.1.2015)
427
+ - [New]: Introducing multiple image Upload
428
+ - [New]: Autoplay option for video slides added
429
+ - [New]: Custom css editor added to admin panel
430
+ - [Improvement]: Major improvement in linking slides
431
+ - [Improvement]: Some improvement in API for managing front end assets
432
+ - [Improvement]: improvement in aligning the content of tab control
433
+ - [Improvement]: User interface improvement
434
+ - [Improvement]: Lots of improvement in slider performance
435
+ - [Improvement]: Adding compatibility with wheel navigation by Magic Mouse or Trackpad in OS X
436
+ - [Fix]: Addressed and issue with rendering issue in latest version of Firefox
437
+ - [Fix]: An issue with slide link in latest version of Firefox fixed
438
+ - [Fix]: An conflict with modal window in WordPress 4.1 fixed
439
+ - [Fix]: An issue with a missing file fixed
440
+ - [Fix]: An issue with slider fallbacks fixed
441
+ - [Fix]: An issue with wheel navigation with non-loop slider fixed
442
+ - [Fix]: Fixed unexpected js errors when swipe navigation is disabled
443
+ - [Fix]: An issue removeEventListener method fixed
444
+ - [Update]: Annoying glow on buttons and links in admin panel removed
445
+ - [Update]: Slider base styles updated
446
+ - [Update]: Translate files updated
447
+
448
+ Version 1.4.4 / (8.1.2015)
449
+ - Addressed a bug which stopped the sliders in some WordPress site
450
+
451
+ Version 1.4.2 / (7.1.2015)
452
+ - [Improvement]: Improvement in loading front end assets
453
+ - [New]: New developer API added
454
+ - [Fix]: Minor bugs fixed
455
+
456
+ Version 1.4.0 / (19.12.2014)
457
+ - A conflict with modal in WordPress 4.1 fixed
458
+
459
+ Version 1.3.9 / (22.11.2014)
460
+ - Some class names renamed to eliminate the conflict with others themes and plugins.
461
+
462
+ Version 1.3.8 / (16.11.2014)
463
+ - Mino bugs fixed
464
+
465
+ Version 1.3.6 / (22.10.2014)
466
+ - Improvement in swipe on android devices
467
+
468
+ Version 1.3.4 / (6.10.2014)
469
+ - Improvement in loading admin assets
470
+
471
+ Version 1.3.3 / (29.09.2014)
472
+ - Improvement in Master Slider's built-in cache
473
+
474
+ Version 1.3.2 / (28.09.2014)
475
+ - Minor bugs fixed
476
+ - Translate file updated
477
+
478
+ Version 1.3.1 / (22.09.2014)
479
+ - Documentation updated
480
+
481
+ Version 1.3.0 / (19.09.2014)
482
+ - [Fix]: Addressed an issue with grap cursors in internet explorer
483
+ - [Fix]: An issue with creating styles on multisite fixed
484
+ - [New]: New developer API to change origin_uploads_url for importing medias
485
+ - [Improvement]: Improvement in admin interface
486
+
487
+ Version 1.2.5 / (17.09.2014)
488
+ - Performance Improvement
489
+ - Minor bugs fixed
490
+
491
+ Version 1.2.1 / (11.09.2014)
492
+ - Minor bug in admin panel fixed
493
+
494
+ Version 1.2.0 / (08.09.2014)
495
+ - [New Feature]: New button added to WordPress editor in order to add Master Slider shorcodes with just simple click
496
+ - [Improvement]: Improving responsiveness of admin panel
497
+ - [Improvement]: Interface compatibility with WordPress 4.0 in admin area applied
498
+
499
+ Version 1.1.0 / (06.09.2014)
500
+ * compatibility with WordPress 4.0.0 added
501
+ * Minor bugs fixed
502
+
503
+ Version 1.0.10 / (07.08.2014)
504
+ * Slide info is now shortcode enabled
505
+ * compatibility with WordPress 3.9.2 added
506
+
507
+ Version 1.0.9 / (22.07.2014)
508
+ * A minor bug in plugins page fixed
509
+
510
+ Version 1.0.8 / (21.07.2014)
511
+ * A link added to plugins page for rating this plugin
512
+
513
+ Version 1.0.7 / (19.07.2014)
514
+ * [New Feature]: New option added to global setting that let you load plugins's scripts on all pages.
515
+ ( Useful when loading slider via Ajax )
516
+ * An issue with text editor fixed
517
+
518
+ Version 1.0.6 / (17.07.2014)
519
+ * [New]: Introduction video added
520
+
521
+ Version 1.0.5 / (15.07.2014)
522
+ * [Fix]: An issue with uninstalling the plugin fixed
523
+
524
+ Version 1.0.1 / (12.07.2014)
525
+ * initial release
526
+
527
+
528
+ = Upgrade Notice
529
+
530
+ Version 3.7.10/ (11.10.2021)
531
+ - [Fixed]: An issue which caused controls `autohide` option didn't work.
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Marghoob Suleman, http://www.marghoobsuleman.com/
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,60 @@
1
+ j1-nbinteract
2
+ -------------
3
+
4
+ The MIT License (J1)
5
+ --------------------------------------------------------------------------------
6
+
7
+ Copyright (C) 2022 Juergen Adams
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ of this software and associated documentation files (the "Software"), to deal
11
+ in the Software without restriction, including without limitation the rights
12
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ copies of the Software, and to permit persons to whom the Software is
14
+ furnished to do so, subject to the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included in
17
+ all copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
+ THE SOFTWARE.
26
+
27
+
28
+ nbinteract
29
+ ----------
30
+
31
+ BSD 3-Clause License (nbinteract)
32
+ --------------------------------------------------------------------------------
33
+
34
+ Copyright (c) 2017, Sam Lau
35
+ All rights reserved.
36
+
37
+ Redistribution and use in source and binary forms, with or without
38
+ modification, are permitted provided that the following conditions are met:
39
+
40
+ * Redistributions of source code must retain the above copyright notice, this
41
+ list of conditions and the following disclaimer.
42
+
43
+ * Redistributions in binary form must reproduce the above copyright notice,
44
+ this list of conditions and the following disclaimer in the documentation
45
+ and/or other materials provided with the distribution.
46
+
47
+ * Neither the name of the copyright holder nor the names of its
48
+ contributors may be used to endorse or promote products derived from
49
+ this software without specific prior written permission.
50
+
51
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
52
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
53
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
54
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
55
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
57
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
58
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
59
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
60
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,46 @@
1
+ /*
2
+ # -----------------------------------------------------------------------------
3
+ # ~/modules/rouge/css/themes.txt
4
+ # All available Rouge themes
5
+ #
6
+ # Product/Info:
7
+ # https://jekyll.one
8
+ # https://github.com/rouge-ruby/rouge
9
+ #
10
+ # Copyright (C) 2022 Juergen Adams
11
+ # Copyright (c) 2012 Jeanine Adkisson
12
+ #
13
+ # J1 Template is licensed under the MIT License.
14
+ # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
15
+ # Rouge is licensed under the MIT License.
16
+ # See: https://github.com/rouge-ruby/rouge/blob/master/LICENSE
17
+ # -----------------------------------------------------------------------------
18
+ */
19
+
20
+ base16
21
+ base16.dark
22
+ base16.light
23
+ base16.monokai
24
+ base16.monokai.dark
25
+ base16.monokai.light
26
+ base16.solarized
27
+ base16.solarized.dark
28
+ base16.solarized.light
29
+ colorful
30
+ github
31
+ gruvbox
32
+ gruvbox.dark
33
+ gruvbox.light
34
+ igorpro
35
+ molokai
36
+ monokai
37
+ monokai.sublime
38
+ pastie
39
+ thankful_eyes
40
+ tulip
41
+
42
+
43
+ Create a style, example for Theme CSS base16
44
+ --------------------------------------------------------------------------------
45
+
46
+ rougify style base16 > theme.base16.css
@@ -0,0 +1,27 @@
1
+ Copyright (c) 2015-2021, University of Washington Interactive Data Lab
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+
10
+ 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ 3. Neither the name of the copyright holder nor the names of its contributors
15
+ may be used to endorse or promote products derived from this software
16
+ without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
22
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/lib/j1/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module J1
2
- VERSION = '2022.5.2'
2
+ VERSION = '2022.6.0'
3
3
  end