Commit 445a9490 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Merge branch 'release-1.4.2'

parents 5ccc5463 25ea5208
Loading
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
Journal des modifications
=========================

1.4.2 (14/02/2020)
------------------

- Extraction CSV des thèses : nouvelles colonnes concernant l'embargo et refus de diffusion ; 
  virgule plutôt que point dans la durée de la thèse.
- Page d'accueil : affichage des actualités issues du flux RSS fourni par la COMUE.
- Filtrage de la liste des thèses : correction de l'affichage du filtre "Unité de recherche".
- Corrections de textes sur la page RDV BU.


1.4.1 (24/01/2020)
------------------

+3 −3
Original line number Diff line number Diff line
@@ -2,9 +2,9 @@
return [
    'unicaen-app' => [
        'app_infos' => [
            'version' => '1.4.1',
            'date' => '24/01/2020',
            'version' => '1.4.2',
            'date' => '14/02/2020',
        ],
    ],
    'comment' => 'Fichier généré le 24/01/2020 à 12:14:35 avec /home/gauthierb/workspace/sygal/bump-version',
    'comment' => 'Fichier généré le 14/02/2020 à 13:53:04 avec /home/gauthierb/workspace/sygal/bump-version',
];
+19 −0
Original line number Diff line number Diff line
# Version 1.4.2

## 1. Sur le serveur d'application
  
- Placez-vous dans le répertoire de l'application puis lancez la commande suivante 
pour installer la nouvelle version :

```bash
git fetch --tags && git checkout --force 1.4.2 && \
bash ./install.sh
```

- Selon le moteur PHP que vous avez installé, rechargez le service, exemple :
  - php7.0-fpm         : `service php7.0-fpm reload`
  - apache2-mod-php7.0 : `service apache2 reload`

## 2. Dans la base de données

Néant.
 No newline at end of file
+1 −0
Original line number Diff line number Diff line
@@ -280,6 +280,7 @@ return array(
        'stylesheets'           => [
            '050_bootstrap-theme' => false,
            '100_charte' => '/css/charte.css',
            '200_fa' => '/fontawesome-free-5.12.0-web/css/all.min.css',
        ],
        'printable_stylesheets' => [
        ],
+2 −4
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@ use Application\Service\FichierThese\FichierTheseServiceAwareTrait;
use Application\Service\These\TheseRechercheServiceAwareTrait;
use Application\Service\These\TheseServiceAwareTrait;
use Application\SourceCodeStringHelperAwareTrait;
use UnicaenApp\Exception\LogicException;
use UnicaenApp\View\Model\CsvModel;

class ExportController extends AbstractController
@@ -92,10 +93,7 @@ class ExportController extends AbstractController
            'Date de fin de confientialité'         => function (These $these) { return $these->getDateFinConfidentialite(); },
            'Date de dépôt version initiale'        => function (These $these) { $file = $these->hasVersionInitiale(); if ($file) return $file->getFichier()->getHistoCreation()->format('d/m/Y'); return "";},
            'Date de dépôt version corigée'         => function (These $these) { $file = $these->hasVersionCorrigee(); if ($file) return $file->getFichier()->getHistoCreation()->format('d/m/Y'); return "";},
            'Durée en mois de la thèse'             => function (These $these) { if ($these->getDatePremiereInscription() !== null AND $these->getDateSoutenance() !== null)
                return number_format(($these->getDateSoutenance())->diff($these->getDatePremiereInscription())->format('%a')/30.5, 2);
            else return "";
            },
            'Durée en mois de la thèse'             => function (These $these) { try { return number_format($these->getDureeThese(), 2, ',', ''); } catch (LogicException $e) { return ""; } },

            //Flags
            'Etat de la thèse'                      => function (These $these) { return $these->getEtatTheseToString();},
Loading