Skip to content

Commit 0ca94e9

Browse files
authored
Merge pull request #872 from ucfopen/dev/v3-3-1
Release 3.3.1
2 parents c91b73f + 8964e2e commit 0ca94e9

File tree

11 files changed

+1075
-998
lines changed

11 files changed

+1075
-998
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ APP_LTI_REDIRECT_PATH="/lti/authorize/check"
4040
APP_LTI_NAME="UDOIT 3"
4141
ADMIN_LTI_NAME="UDOIT 3 Admin"
4242
USE_DEVELOPMENT_AUTH="no"
43-
VERSION_NUMBER="3.3.0"
43+
VERSION_NUMBER="3.3.1"
4444

4545

4646
###> symfony/messenger ###

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Join UCF Open Slack Discussions](https://badgen.net/badge/icon/ucfopen?icon=slack&label)](https://dl.ucf.edu/join-ucfopen)
1+
[![Join UCF Open Slack Discussions](https://badgen.net/badge/icon/ucfopen?icon=slack&label=slack)](https://dl.ucf.edu/join-ucfopen)
22
![Build Status](https://github.com/ucfopen/UDOIT/actions/workflows/udoit.yml/badge.svg)
33

44
# Universal Design Online content Inspection Tool

build/nginx/Dockerfile.build

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ RUN docker-php-ext-install pdo_mysql gd pdo \
1313
&& docker-php-ext-install intl \
1414
&& apt-get remove libicu-dev icu-devtools -y
1515

16+
# Write opcache-specific PHP ini file
1617
RUN { \
1718
echo 'opcache.memory_consumption=128'; \
1819
echo 'opcache.interned_strings_buffer=8'; \
@@ -22,7 +23,10 @@ RUN { \
2223
echo 'opcache.enable_cli=1'; \
2324
} > /usr/local/etc/php/conf.d/php-opocache-cfg.ini
2425

26+
# Copy custom PHP ini file that overrides defaults
27+
COPY ./build/nginx/php-custom.ini /usr/local/etc/php/conf.d/php-custom.ini
2528

29+
# Copy custom Nginx configuration
2630
COPY ./build/nginx/deploy.conf /etc/nginx/sites-enabled/default
2731

2832
COPY ./build/nginx/entrypoint.sh /etc/entrypoint.sh

build/nginx/php-custom.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
max_execution_time = 180

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"ext-ctype": "*",
1212
"ext-iconv": "*",
1313
"ext-sodium": "*",
14-
"cidilabs/phpally": "~1.1.1",
14+
"cidilabs/phpally": "~1.2.1",
1515
"composer/package-versions-deprecated": "1.11.99.3",
1616
"doctrine/annotations": "^1.0",
1717
"doctrine/doctrine-bundle": "^2.4",

composer.lock

Lines changed: 868 additions & 832 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker-compose.nginx.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ version: "3.9"
33
services:
44
db:
55
image: mysql:latest
6-
platform: linux/amd64
76
volumes:
87
- dbdata:/var/lib/mysql
98
environment:
@@ -43,6 +42,9 @@ services:
4342
dockerfile: Dockerfile.php.pdo.mysql
4443
volumes:
4544
- ./:/var/www/html
45+
- type: bind
46+
source: ./build/nginx/php-custom.ini
47+
target: /usr/local/etc/php/conf.d/php-custom.ini
4648
env_file:
4749
- .env
4850
- .env.local

src/Lms/LmsResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function setContent($content)
5555
$this->contentString .= $content;
5656
}
5757
else {
58-
$this->contentArray = array_merge($this->contentArray, $results);
58+
$this->contentArray = array_merge_recursive($this->contentArray, $results);
5959
}
6060
}
6161

translations/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
"label.view_source": "HTML",
153153
"label.open_in_lms": "View In LMS",
154154
"label.continue": "Continue",
155-
"label.content_loading_msg": "UDOIT is scanning the course content for accessibility issues. This scan happens automatically each time you use the tool.",
155+
"label.content_loading_msg": "UDOIT is scanning the course content for accessibility issues. This scan happens automatically each time you use the tool. It can take multiple minutes depending on your course content. You will not be able to fix or resolve issues until the scan has completed.",
156156
"label.review_only": "This issue cannot be fixed within UDOIT. You can fix the issue in Canvas, or mark this as reviewed to hide this issue in the future.",
157157
"label.manually_resolved": "Manually Resolved",
158158
"label.manual_resolution": "Manual Resolution",

translations/es.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
"label.view_source": "HTML",
153153
"label.open_in_lms": "Ver en LMS",
154154
"label.continue": "Continuar",
155-
"label.content_loading_msg": "Se está revisando el contenido del curso.",
155+
"label.content_loading_msg": "UDOIT está revisando el contenido del curso. Este escaneado ocurre automáticamente cada vez que la herramienta se utiliza. Puede tardar varios minutos dependiendo del contenido del curso. No se pueden arreglar ni resolver problemas hasta que el escaneado se haya completado.",
156156
"label.review_only": "Este problema no se puede solucionar dentro de UDOIT. Puede solucionar el problema en Canvas o marcarlo como revisado para ocultar este problema en el futuro.",
157157
"label.manually_resolved": "Resuelto Manualmente",
158158
"label.manual_resolution": "Resolución Manual",

0 commit comments

Comments
 (0)