Skip to content

Commit

Permalink
Version 6.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
luigifab committed Aug 8, 2021
1 parent f454cbc commit 0c86c0a
Show file tree
Hide file tree
Showing 29 changed files with 148 additions and 42 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@ For more information, go to https://www.luigifab.fr/apijs and https://www.luigif

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

- Current version: 6.7.0 (07/07/2021)
- Compatibility: Redmine 1.4 / 2.x / 3.x / 4.0 / 4.1 / 4.2, Python 3.3 / 3.4 / 3.5 / 3.6 / 3.7 / 3.8 / 3.9
- Current version: 6.8.0 (08/08/2021)
- Compatibility: Redmine 1.4 / 2.x / 3.x / 4.x, Python 3.3 - 3.10
- 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)
- Other translations: Czech (cs), Dutch (nl), Japanese (ja), Polish (pl), Slovak (sk)
- Other translations: Chinese (zh), Russian (ru), Turkish (tr), Ukrainian (uk)
- 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+

If you like, take some of your time to improve the translations, go to https://bit.ly/2HyCCEc.
4 changes: 2 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
redmine-plugin-apijs (6.7.0-1) unstable; urgency=low
redmine-plugin-apijs (6.8.0-1) unstable; urgency=low

* Initial debian package release (Closes: #959426)

-- Fabrice Creuzot <code@luigifab.fr> Wed, 07 Jul 2021 20:00:00 +0000
-- Fabrice Creuzot <code@luigifab.fr> Sun, 08 Aug 2021 20:00:00 +0000
2 changes: 2 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ License: GPL-2+

Files: */assets/fonts/apijs/fontello.woff */assets/fonts/apijs/fontello.woff2
Copyright: fontello.com
Font Awesome 2016 Dave Gandy
Iconic 2012 P.J. Onori
License: SIL-1.1

Files: */lib/useragentparser.rb
Expand Down
13 changes: 4 additions & 9 deletions debian/deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@


cd "$(dirname "$0")"
version="6.7.0"
version="6.8.0"


rm -rf builder/
mkdir builder

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


# create packages for debian and ubuntu
for serie in unstable impish hirsute groovy focal bionic xenial trusty precise; do
for serie in unstable impish hirsute groovy focal bionic xenial trusty; do

if [ $serie = "unstable" ]; then
# for ubuntu
Expand All @@ -56,7 +56,7 @@ for serie in unstable impish hirsute groovy focal bionic xenial trusty precise;
if [ $serie = "unstable" ]; then
dpkg-buildpackage -us -uc
else
# debhelper: unstable:13 hirsute:13 groovy:13 focal:12 bionic:9 xenial:9 trusty:9 precise:9
# debhelper: unstable:13 hirsute:13 groovy:13 focal:12 bionic:9 xenial:9 trusty:9
if [ $serie = "focal" ]; then
sed -i 's/debhelper-compat (= 13)/debhelper-compat (= 12)/g' debian/control
fi
Expand All @@ -73,11 +73,6 @@ for serie in unstable impish hirsute groovy focal bionic xenial trusty precise;
sed -i ':a;N;$!ba;s/Rules-Requires-Root: no\n//g' debian/control
echo 9 > debian/compat
fi
if [ $serie = "precise" ]; then
sed -i 's/debhelper-compat (= 13)/debhelper (>= 9)/g' debian/control
sed -i ':a;N;$!ba;s/Rules-Requires-Root: no\n//g' debian/control
echo 9 > debian/compat
fi
sed -i 's/unstable/'$serie'/g' debian/changelog
sed -i 's/-1) /-1+'$serie') /' debian/changelog
dpkg-buildpackage -us -uc -ui -d -S
Expand Down
8 changes: 6 additions & 2 deletions opensuse/redmine-apijs.spec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
%define basedir /srv/www/vhosts/redmine/
%define plugin_name redmine_apijs
Name: redmine-apijs
Version: 6.7.0
Version: 6.8.0
Release: 0
Summary: Redmine plugin to display gallery from attachments
Summary(fr): Extension Redmine pour afficher une galerie à partir des pièces jointes
License: GPL-2.0-or-later and MIT
License: GPL-2.0-or-later and MIT and OFL-1.1
URL: https://github.com/luigifab/redmine-apijs
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz

Expand Down Expand Up @@ -61,10 +61,14 @@ chmod +x %{buildroot}%{basedir}/plugins/%{plugin_name}/lib/*.py
%license LICENSE
%doc README.md
# the entire source code is GPL-2.0-or-later, except lib/useragentparser.rb which is MIT
# and assets/fonts/apijs/fontello.woff(2) which is OFL-1.1
%attr(-,root,redmine) %{basedir}/plugins/%{plugin_name}/


%changelog
* Sun Aug 08 2021 Fabrice Creuzot <code@luigifab.fr> - 6.8.0-1
- New upstream version

* Wed Jul 07 2021 Fabrice Creuzot <code@luigifab.fr> - 6.7.0-1
- New upstream version

Expand Down
4 changes: 2 additions & 2 deletions opensuse/rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@


cd "$(dirname "$0")"
version="6.7.0"
version="6.8.0"


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

# copy to a tmp directory
if [ true ]; then
if [ ! true ]; then
chmod 644 redmine-apijs.spec
spectool -g -R redmine-apijs.spec
else
Expand Down
2 changes: 1 addition & 1 deletion rubygem/gem.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


cd "$(dirname "$0")"
version="6.7.0"
version="6.8.0"
rm -rf builder/


Expand Down
13 changes: 8 additions & 5 deletions rubygem/redmine_apijs.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,33 +27,36 @@ Gem::Specification.new do |s|
assets/images/apijs/player-white-200.png
assets/images/apijs/player-white-400.png
assets/images/apijs/tv.gif
assets/javascripts/apijs-redmine.js
assets/javascripts/apijs-redmine.min.js
assets/javascripts/apijs-redmine.min.js.map
assets/javascripts/apijs.min.js
assets/javascripts/apijs.min.js.map
assets/javascripts/app.js
assets/javascripts/app.min.js.map
assets/stylesheets/apijs-print.min.css
assets/stylesheets/apijs-print.min.css.map
assets/stylesheets/apijs-redmine-rtl.min.css
assets/stylesheets/apijs-redmine-rtl.min.css.map
assets/stylesheets/apijs-redmine.css
assets/stylesheets/apijs-redmine.min.css
assets/stylesheets/apijs-redmine.min.css.map
assets/stylesheets/apijs-screen-rtl.min.css
assets/stylesheets/apijs-screen-rtl.min.css.map
assets/stylesheets/apijs-screen.min.css
assets/stylesheets/apijs-screen.min.css.map
assets/stylesheets/styles-rtl.min.css.map
assets/stylesheets/styles.css
assets/stylesheets/styles.min.css.map
config/locales/cs.yml
config/locales/de.yml
config/locales/el.yml
config/locales/en.yml
config/locales/es.yml
config/locales/fr.yml
config/locales/hu.yml
config/locales/it.yml
config/locales/ja.yml
config/locales/nl.yml
config/locales/pl.yml
config/locales/pt-BR.yml
config/locales/pt.yml
config/locales/ro.yml
config/locales/ru.yml
config/locales/sk.yml
config/locales/tr.yml
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/assets/javascripts/apijs-redmine.min.js

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

2 changes: 1 addition & 1 deletion src/assets/javascripts/apijs-redmine.min.js.map

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/assets/stylesheets/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/assets/stylesheets/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/assets/stylesheets/apijs-redmine-rtl.min.css

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

Loading

0 comments on commit 0c86c0a

Please sign in to comment.