Skip to content

Commit 47ea1cd

Browse files
committed
Version 6.8.1
1 parent 0c86c0a commit 47ea1cd

23 files changed

+44
-41
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ For more information, go to https://www.luigifab.fr/apijs and https://www.luigif
66

77
This repository is a releases mirror. To install the plugin, please read the documentation.
88

9-
- Current version: 6.8.0 (08/08/2021)
9+
- Current version: 6.8.1 (10/10/2021)
1010
- Compatibility: Redmine 1.4 / 2.x / 3.x / 4.x, Python 3.3 - 3.10
1111
- Client compatibility: Firefox 36+, Chrome 32+, Opera 19+, Edge 16+, Safari 9+
1212
- 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)

debian/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
redmine-plugin-apijs (6.8.0-1) unstable; urgency=low
1+
redmine-plugin-apijs (6.8.1-1) unstable; urgency=low
22

33
* Initial debian package release (Closes: #959426)
44

5-
-- Fabrice Creuzot <[email protected]> Sun, 08 Aug 2021 20:00:00 +0000
5+
-- Fabrice Creuzot <[email protected]> Sun, 10 Oct 2021 20:00:00 +0000

debian/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Priority: optional
44
Maintainer: Fabrice Creuzot <[email protected]>
55
Build-Depends: debhelper-compat (= 13)
66
Rules-Requires-Root: no
7-
Standards-Version: 4.5.1
7+
Standards-Version: 4.6.0.1
88
Homepage: https://github.com/luigifab/redmine-apijs
99
Vcs-Browser: https://github.com/luigifab/redmine-apijs
1010
Vcs-Git: https://github.com/luigifab/redmine-apijs.git
@@ -15,7 +15,7 @@ Pre-Depends: redmine
1515
Depends: redmine (>= 2.0.0), ruby (>= 1.9), python3-pil, python3-scour, libimage-exiftool-perl, ${misc:Depends}
1616
Recommends: ffmpegthumbnailer
1717
Enhances: redmine
18-
Description: Redmine plugin to display gallery from attachments
18+
Description: plugin for Redmine to display a gallery from attachments
1919
This plugin integrates apijs JavaScript library into Redmine.
2020
For more information about the library, go to luigifab.fr/apijs.
2121
.

debian/deb.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44

55
cd "$(dirname "$0")"
6-
version="6.8.0"
6+
version="6.8.1"
77

88

99
rm -rf builder/
1010
mkdir builder
1111

1212
# copy to a tmp directory
13-
if [ ! true ]; then
13+
if [ true ]; then
1414
cd builder
1515
wget https://github.com/luigifab/redmine-apijs/archive/v$version/redmine-apijs-$version.tar.gz
1616
tar xzf redmine-apijs-$version.tar.gz
@@ -31,7 +31,7 @@ fi
3131

3232

3333
# create packages for debian and ubuntu
34-
for serie in unstable impish hirsute groovy focal bionic xenial trusty; do
34+
for serie in unstable impish hirsute focal bionic xenial trusty; do
3535

3636
if [ $serie = "unstable" ]; then
3737
# for ubuntu
@@ -46,7 +46,7 @@ for serie in unstable impish hirsute groovy focal bionic xenial trusty; do
4646

4747
dh_make -a -s -y -f ../redmine-apijs-$version.tar.gz -p redmine-plugin-apijs
4848

49-
rm -f debian/*ex debian/*EX debian/README* debian/*doc*
49+
rm -f debian/*ex debian/*EX debian/README* debian/*doc* debian/deb.sh
5050
mkdir debian/upstream
5151
mv debian/metadata debian/upstream/metadata
5252
mv debian/lintian debian/redmine-plugin-apijs.lintian-overrides
@@ -56,7 +56,7 @@ for serie in unstable impish hirsute groovy focal bionic xenial trusty; do
5656
if [ $serie = "unstable" ]; then
5757
dpkg-buildpackage -us -uc
5858
else
59-
# debhelper: unstable:13 hirsute:13 groovy:13 focal:12 bionic:9 xenial:9 trusty:9
59+
# debhelper: unstable:13 hirsute:13 focal:12 bionic:9 xenial:9 trusty:9
6060
if [ $serie = "focal" ]; then
6161
sed -i 's/debhelper-compat (= 13)/debhelper-compat (= 12)/g' debian/control
6262
fi

opensuse/redmine-apijs.spec

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
%define basedir /srv/www/vhosts/redmine/
22
%define plugin_name redmine_apijs
33
Name: redmine-apijs
4-
Version: 6.8.0
4+
Version: 6.8.1
55
Release: 0
6-
Summary: Redmine plugin to display gallery from attachments
7-
Summary(fr): Extension Redmine pour afficher une galerie à partir des pièces jointes
6+
Summary: Plugin for Redmine to display a gallery from attachments
7+
Summary(fr): Extension pour Redmine pour afficher une galerie à partir des pièces jointes
88
License: GPL-2.0-or-later and MIT and OFL-1.1
99
URL: https://github.com/luigifab/redmine-apijs
1010
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
@@ -66,11 +66,14 @@ chmod +x %{buildroot}%{basedir}/plugins/%{plugin_name}/lib/*.py
6666

6767

6868
%changelog
69+
* Sun Oct 10 2021 Fabrice Creuzot <[email protected]> - 6.8.1-1
70+
- New upstream release
71+
6972
* Sun Aug 08 2021 Fabrice Creuzot <[email protected]> - 6.8.0-1
70-
- New upstream version
73+
- New upstream release
7174

7275
* Wed Jul 07 2021 Fabrice Creuzot <[email protected]> - 6.7.0-1
73-
- New upstream version
76+
- New upstream release
7477

7578
* Wed Mar 03 2021 Fabrice Creuzot <[email protected]> - 6.6.0-1
7679
- Initial openSUSE package release

opensuse/rpm.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44

55
cd "$(dirname "$0")"
6-
version="6.8.0"
6+
version="6.8.1"
77

88

99
rm -rf builder/ ~/rpmbuild/
1010
mkdir -p builder ~/rpmbuild/{BUILD,BUILDROOT,RPMS,SOURCES,SPECS,SRPMS}
1111

1212
# copy to a tmp directory
13-
if [ ! true ]; then
13+
if [ true ]; then
1414
chmod 644 redmine-apijs.spec
1515
spectool -g -R redmine-apijs.spec
1616
else

rubygem/gem.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
cd "$(dirname "$0")"
6-
version="6.8.0"
6+
version="6.8.1"
77
rm -rf builder/
88

99

src/assets/javascripts/apijs-redmine.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Created D/15/12/2013
3-
* Updated D/09/05/2021
3+
* Updated D/05/09/2021
44
*
55
* Copyright 2008-2021 | Fabrice Creuzot (luigifab) <code~luigifab~fr>
66
* https://www.luigifab.fr/redmine/apijs
@@ -20,7 +20,7 @@ var apijsRedmine = new (function () {
2020

2121
"use strict";
2222

23-
this.start = function () {
23+
this.init = function () {
2424

2525
var d = apijs.i18n.data;
2626
if (!d.frca) d.frca = {};
@@ -316,4 +316,4 @@ var apijsRedmine = new (function () {
316316
})();
317317

318318
if (typeof self.addEventListener == 'function')
319-
self.addEventListener('apijsload', apijsRedmine.start.bind(apijsRedmine));
319+
self.addEventListener('apijsload', apijsRedmine.init.bind(apijsRedmine));

src/assets/javascripts/apijs-redmine.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/assets/javascripts/apijs-redmine.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)