3.8.0
What's Changed
- #1616 Resolvi o problema de imagem dos Voluntários by @EnzoDarcy in #1626
- Conclusão das issues #1617 e #1612 by @hananvictor2008 in #1622
- Issue [#1540] concluida by @JoaoVictorPinheiroGrandini in #1618
- Pre master vida relevante 2026 05 05 by @nilsonLazarin in #1627
- Pre master miados e latidos 2026 05 05 by @nilsonLazarin in #1628
- WeGIA 3.8.0 by @nilsonLazarin in #1629
Full Changelog: 3.7.3...3.8.0
Mudança da estrutura dos arquivos do sistema
# Desativar o virtual host
a2dissite wegia.conf
a2dissite wegia-le-ssl.conf
systemctl restart apache2
# Ajustar o caminho para o novo subdiretório
#Editar os arquivos /etc/apache2/sites-available/wegia-le-ssl.conf e /etc/apache2/sites-available/wegia-le-ssl.conf
#Mudar onde: DocumentRoot /var/www/WeGIA/ por: DocumentRoot /var/www/WeGIA/web/
#Mudar onde: <Directory /var/www/WeGIA> por: <Directory /var/www/WeGIA/web>
# Backup de arquivos
mkdir -p /tmp/WeGIA/pdfs
mv /var/www/WeGIA/config.php /tmp/WeGIA/
mv /var/www/WeGIA/html/seguranca/ips_bloqueados.json /tmp/WeGIA/
mv /var/www/WeGIA/html/contribuicao/pdfs/*.pdf /tmp/WeGIA/pdfs/
# Atualização da Estrutura
cd /var/www/WeGIA/
sudo -u www-data git checkout master
sudo -u www-data git status
sudo -u www-data git pull
# Retornando arquivos
mv /tmp/WeGIA/config.php /var/www/WeGIA/web/
mv /tmp/WeGIA/ips_bloqueados.json /var/www/WeGIA/web/html/seguranca/ips_bloqueados.json
mv /tmp/WeGIA/pdfs/*.pdf /var/www/WeGIA/web/html/contribuicao/pdfs/
#Ativando o virtual host
a2ensite wegia.conf
a2ensite wegia-le-ssl.conf
systemctl restart apache2