├── .babelrc ├── .github └── workflows │ └── reuse-h5p-build.yml ├── .gitignore ├── .h5pignore ├── .stylelintrc.json ├── LICENSE ├── README.md ├── eslint.config.js ├── icon.svg ├── language ├── .en.json ├── ar.json ├── cs.json ├── de.json ├── el.json ├── es-mx.json ├── es.json ├── eu.json ├── fi.json ├── fr.json ├── gl.json ├── hu.json ├── lt.json ├── lv.json ├── mn.json ├── nl.json ├── pt-br.json ├── pt.json ├── ro.json ├── sl.json ├── sw.json └── te.json ├── library.json ├── package.json ├── semantics.json ├── src ├── entries │ └── dist.js ├── images │ ├── button-camera-icon-blue.svg │ ├── button-camera-icon-grey.svg │ ├── button-camera-icon-white.svg │ ├── button-fullscreen-enter-icon-blue.svg │ ├── button-fullscreen-enter-icon-white.svg │ ├── button-fullscreen-exit-icon-blue.svg │ ├── button-fullscreen-exit-icon-white.svg │ ├── button-quit-icon-blue.svg │ ├── button-quit-icon-grey.svg │ ├── button-quit-icon-white.svg │ ├── button-task-icon-blue.svg │ ├── button-task-icon-grey.svg │ └── button-task-icon-white.svg ├── scripts │ ├── components │ │ ├── h5p-ar-scavenger-button.js │ │ ├── h5p-ar-scavenger-button.scss │ │ ├── h5p-ar-scavenger-content-action.js │ │ ├── h5p-ar-scavenger-content-action.scss │ │ ├── h5p-ar-scavenger-content-camera.js │ │ ├── h5p-ar-scavenger-content-camera.scss │ │ ├── h5p-ar-scavenger-content-titlebar.js │ │ ├── h5p-ar-scavenger-content-titlebar.scss │ │ ├── h5p-ar-scavenger-feedback-section.js │ │ ├── h5p-ar-scavenger-feedback-section.scss │ │ ├── h5p-ar-scavenger-screen-end.js │ │ ├── h5p-ar-scavenger-screen-end.scss │ │ ├── h5p-ar-scavenger-screen-start.js │ │ ├── h5p-ar-scavenger-screen.js │ │ └── h5p-ar-scavenger-screen.scss │ ├── h5p-ar-scavenger-content-handlers.js │ ├── h5p-ar-scavenger-content-setup.js │ ├── h5p-ar-scavenger-content.js │ ├── h5p-ar-scavenger-content.scss │ ├── h5p-ar-scavenger-util.js │ ├── h5p-ar-scavenger.js │ └── h5p-ar-scavenger.scss └── styles │ └── main.scss ├── upgrades.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/reuse-h5p-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/.github/workflows/reuse-h5p-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/.gitignore -------------------------------------------------------------------------------- /.h5pignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/.h5pignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/eslint.config.js -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/icon.svg -------------------------------------------------------------------------------- /language/.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/.en.json -------------------------------------------------------------------------------- /language/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/ar.json -------------------------------------------------------------------------------- /language/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/cs.json -------------------------------------------------------------------------------- /language/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/de.json -------------------------------------------------------------------------------- /language/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/el.json -------------------------------------------------------------------------------- /language/es-mx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/es-mx.json -------------------------------------------------------------------------------- /language/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/es.json -------------------------------------------------------------------------------- /language/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/eu.json -------------------------------------------------------------------------------- /language/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/fi.json -------------------------------------------------------------------------------- /language/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/fr.json -------------------------------------------------------------------------------- /language/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/gl.json -------------------------------------------------------------------------------- /language/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/hu.json -------------------------------------------------------------------------------- /language/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/lt.json -------------------------------------------------------------------------------- /language/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/lv.json -------------------------------------------------------------------------------- /language/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/mn.json -------------------------------------------------------------------------------- /language/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/nl.json -------------------------------------------------------------------------------- /language/pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/pt-br.json -------------------------------------------------------------------------------- /language/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/pt.json -------------------------------------------------------------------------------- /language/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/ro.json -------------------------------------------------------------------------------- /language/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/sl.json -------------------------------------------------------------------------------- /language/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/sw.json -------------------------------------------------------------------------------- /language/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/language/te.json -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/library.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/package.json -------------------------------------------------------------------------------- /semantics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/semantics.json -------------------------------------------------------------------------------- /src/entries/dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/entries/dist.js -------------------------------------------------------------------------------- /src/images/button-camera-icon-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-camera-icon-blue.svg -------------------------------------------------------------------------------- /src/images/button-camera-icon-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-camera-icon-grey.svg -------------------------------------------------------------------------------- /src/images/button-camera-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-camera-icon-white.svg -------------------------------------------------------------------------------- /src/images/button-fullscreen-enter-icon-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-fullscreen-enter-icon-blue.svg -------------------------------------------------------------------------------- /src/images/button-fullscreen-enter-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-fullscreen-enter-icon-white.svg -------------------------------------------------------------------------------- /src/images/button-fullscreen-exit-icon-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-fullscreen-exit-icon-blue.svg -------------------------------------------------------------------------------- /src/images/button-fullscreen-exit-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-fullscreen-exit-icon-white.svg -------------------------------------------------------------------------------- /src/images/button-quit-icon-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-quit-icon-blue.svg -------------------------------------------------------------------------------- /src/images/button-quit-icon-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-quit-icon-grey.svg -------------------------------------------------------------------------------- /src/images/button-quit-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-quit-icon-white.svg -------------------------------------------------------------------------------- /src/images/button-task-icon-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-task-icon-blue.svg -------------------------------------------------------------------------------- /src/images/button-task-icon-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-task-icon-grey.svg -------------------------------------------------------------------------------- /src/images/button-task-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/images/button-task-icon-white.svg -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-button.js -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-button.scss -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-content-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-content-action.js -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-content-action.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-content-action.scss -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-content-camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-content-camera.js -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-content-camera.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-content-camera.scss -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-content-titlebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-content-titlebar.js -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-content-titlebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-content-titlebar.scss -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-feedback-section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-feedback-section.js -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-feedback-section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-feedback-section.scss -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-screen-end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-screen-end.js -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-screen-end.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-screen-end.scss -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-screen-start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-screen-start.js -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-screen.js -------------------------------------------------------------------------------- /src/scripts/components/h5p-ar-scavenger-screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/components/h5p-ar-scavenger-screen.scss -------------------------------------------------------------------------------- /src/scripts/h5p-ar-scavenger-content-handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/h5p-ar-scavenger-content-handlers.js -------------------------------------------------------------------------------- /src/scripts/h5p-ar-scavenger-content-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/h5p-ar-scavenger-content-setup.js -------------------------------------------------------------------------------- /src/scripts/h5p-ar-scavenger-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/h5p-ar-scavenger-content.js -------------------------------------------------------------------------------- /src/scripts/h5p-ar-scavenger-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/h5p-ar-scavenger-content.scss -------------------------------------------------------------------------------- /src/scripts/h5p-ar-scavenger-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/h5p-ar-scavenger-util.js -------------------------------------------------------------------------------- /src/scripts/h5p-ar-scavenger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/h5p-ar-scavenger.js -------------------------------------------------------------------------------- /src/scripts/h5p-ar-scavenger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/scripts/h5p-ar-scavenger.scss -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/upgrades.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otacke/h5p-ar-scavenger/HEAD/webpack.config.js --------------------------------------------------------------------------------