Skip to content

Commit

Permalink
Version 6.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
luigifab committed Jun 6, 2023
1 parent 2031c87 commit 6b77fb6
Show file tree
Hide file tree
Showing 12 changed files with 46 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ For more information, go to https://www.luigifab.fr/apijs (IPv6 is required, it'

This repository is a releases mirror. To install it, please read the documentation.

- Current version: 6.9.3 (01/01/2023)
- Current version: 6.9.4 (06/06/2023)
- Client compatibility: Firefox 36+, Chrome 32+, Opera 19+, Edge 16+, Safari 9+
- Translations: English (en), French (fr-FR/fr-CA), German (de), Italian (it), Portuguese (pt-PT/pt-BR), Spanish (es) / Chinese (zh), Czech (cs), Dutch (nl), Greek (el), Hungarian (hu), Japanese (ja), Polish (pl), Romanian (ro), Russian (ru), Slovak (sk), Turkish (tr), Ukrainian (uk)
- License: GNU GPL 2+
Expand Down
32 changes: 32 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "luigifab/apijs",
"description": "JavaScript pop-ups and slideshow.",
"homepage": "https://github.com/luigifab/apijs",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Fabrice Creuzot (luigifab)",
"homepage": "https://www.luigifab.fr",
"email": "code@luigifab.fr"
}
],
"support": {
"issues": "https://github.com/luigifab/apijs/issues",
"docs": "https://www.luigifab.fr/apijs"
},
"funding": [
{
"type": "other",
"url": "https://gandi.link/f/4b904048"
},
{
"type": "other",
"url": "https://fr.tipeee.com/luigifab"
},
{
"type": "other",
"url": "https://ekwateur.fr/?parrain=EKW001147103"
}
],
"minimum-stability": "dev"
}
4 changes: 2 additions & 2 deletions src/javascripts/dialog.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Created D/12/04/2009
* Updated S/02/07/2022
* Updated S/14/01/2023
*
* Copyright 2008-2023 | Fabrice Creuzot (luigifab) <code~luigifab~fr>
* https://github.com/luigifab/apijs
Expand Down Expand Up @@ -1163,7 +1163,7 @@ apijs.core.dialog = function () {
this.htmlHelp = function (isSlideshow, isVideo) {

// pas d'aide en mobile car pas de clavier
if (('ontouchstart' in window) && (navigator.userAgent.toLowerCase().indexOf('mobi') > 0))
if (('ontouchstart' in window) && navigator.userAgent.match(/mobi/i))
return this;

var items, item, keys = [
Expand Down
4 changes: 2 additions & 2 deletions src/javascripts/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Created J/03/12/2009
* Updated L/10/10/2022
* Updated L/24/04/2023
*
* Copyright 2008-2023 | Fabrice Creuzot (luigifab) <code~luigifab~fr>
* https://github.com/luigifab/apijs
Expand Down Expand Up @@ -46,7 +46,7 @@ var apijs = new (function () {

"use strict";
this.core = {};
this.version = 693;
this.version = 694;

this.config = {
lang: 'auto',
Expand Down
2 changes: 1 addition & 1 deletion src/zip/apijs-print.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/zip/apijs-print.min.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/zip/apijs-screen-rtl.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/zip/apijs-screen-rtl.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/zip/apijs-screen.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/zip/apijs-screen.min.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/zip/apijs.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/zip/apijs.min.js.map

Large diffs are not rendered by default.

0 comments on commit 6b77fb6

Please sign in to comment.