Skip to content

Commit

Permalink
Merge branch 'feature/new-maintainer'
Browse files Browse the repository at this point in the history
  • Loading branch information
freshworkx committed Mar 13, 2024
2 parents 665bb39 + 6b8f930 commit c834b9b
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 13 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/ci.yaml
@@ -1,10 +1,5 @@
name: Continous Integration
on:
push:
branches:
- master
- '[0-9]+\-[0-9]+\-x'
pull_request:
on: [workflow_dispatch]

jobs:
integration:
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/ter-upload.yaml
@@ -0,0 +1,15 @@
name: TER-Upload

on:
push:
tags:
- "**"

jobs:
TERUpload:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tomasnorre/typo3-upload-ter@v2
with:
api-token: ${{ secrets.TYPO3_API_TOKEN }}
4 changes: 4 additions & 0 deletions Documentation/About/Changelog/6-1-0.rst
Expand Up @@ -24,6 +24,10 @@ All Changes

This is a list of all changes in this release::

2024-03-13 [TASK] update badges for README.md (Commit 2322ca0 by Jens Neumann)
2024-03-13 [TASK] add TYPO3 TER upload workflow (Commit 93723ec by Jens Neumann)
2024-03-13 [TASK] set ci workflow to manually trigger (Commit 4b61468 by Jens Neumann)
2024-03-12 [DOC] Add documentation for version 6.1.0 (Commit c2f48c0 by Jens Neumann)
2024-03-12 [TASK] update author and company information (Commit 5f346ab by Jens Neumann)
2024-03-11 [TASK] remove funding file (Commit d38cc6f by Jens Neumann)
2024-03-11 [!!!][TASK] rename composer package (Commit fff3801 by Jens Neumann)
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Settings.cfg
@@ -1,7 +1,7 @@
[general]
project = bm_image_gallery
version = 6.0
release = 6.0.0
version = 6.1
release = 6.1.0
t3author = Jens Neumann
copyright = since 2016 by the authors

Expand Down
5 changes: 1 addition & 4 deletions README.md
Expand Up @@ -2,12 +2,9 @@ Simple Image Gallery for TYPO3
==============================

[![Latest Stable Version](https://poser.pugx.org/freshworkx/bm-image-gallery/v/stable)](https://packagist.org/packages/freshworkx/bm-image-gallery)
[![TYPO3 12](https://img.shields.io/badge/TYPO3-12-orange.svg)](https://get.typo3.org/version/12)
[![Build Status](https://github.com/freshworkx/typo3-image-gallery/workflows/Continous%20Integration/badge.svg)](https://github.com/freshworkx/typo3-image-gallery)
[![Total Downloads](https://poser.pugx.org/freshworkx/bm-image-gallery/downloads)](https://packagist.org/packages/freshworkx/bm-image-gallery)
[![Latest Unstable Version](https://poser.pugx.org/freshworkx/bm-image-gallery/v/unstable)](https://packagist.org/packages/freshworkx/bm-image-gallery)
[![Code Climate](https://codeclimate.com/github/freshworkx/typo3-image-gallery/badges/gpa.svg)](https://codeclimate.com/github/freshworkx/typo3-image-gallery)
[![Code Coverage](https://codecov.io/gh/freshworkx/typo3-image-gallery/branch/master/graph/badge.svg?token=9KHQdkBRFA)](https://codecov.io/gh/freshworkx/typo3-image-gallery)
[![License](https://poser.pugx.org/freshworkx/bm-image-gallery/license)](https://packagist.org/packages/freshworkx/bm-image-gallery)

This extension creates galleries from images and Youtube videos organized within TYPO3's 'File collection' records.
The full documentation for the latest releases can be found [here](https://docs.typo3.org/p/freshworkx/bm-image-gallery/master/en-us/).
Expand Down
9 changes: 9 additions & 0 deletions composer.json
Expand Up @@ -57,6 +57,15 @@
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare",
"mkdir -p .Build/web/typo3conf/ext/",
"[ -L .Build/web/typo3conf/ext/bm_image_gallery ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/bm_image_gallery"
],
"prepare-release": [
"rm -rf .github/",
"rm -rf Build/",
"rm -rf Tests/",
"rm .gitattributes",
"rm .gitignore",
"rm .php_cs",
"rm codecov.yml"
]
},
"extra": {
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Expand Up @@ -2,7 +2,7 @@
$EM_CONF['bm_image_gallery'] = [
'title' => 'Simple Image Gallery',
'description' => 'Simple gallery using file collections.',
'version' => '6.0.0',
'version' => '6.1.0',
'category' => 'plugin',
'author' => 'Jens Neumann',
'author_email' => 'info@freshworkx.de',
Expand Down

0 comments on commit c834b9b

Please sign in to comment.