From 61a7981711d8f7c57f33e37fce8eba6668c203d3 Mon Sep 17 00:00:00 2001 From: Allan Otodi Opeto <103313919+AllanOXDi@users.noreply.github.com> Date: Sat, 16 Dec 2023 23:47:03 +0300 Subject: [PATCH 01/17] commented out bottombar text --- .../learn/assets/src/views/ExamPage/index.vue | 128 ++++++++++-------- 1 file changed, 70 insertions(+), 58 deletions(-) diff --git a/kolibri/plugins/learn/assets/src/views/ExamPage/index.vue b/kolibri/plugins/learn/assets/src/views/ExamPage/index.vue index d12fd203a0..9275a5890c 100644 --- a/kolibri/plugins/learn/assets/src/views/ExamPage/index.vue +++ b/kolibri/plugins/learn/assets/src/views/ExamPage/index.vue @@ -68,69 +68,81 @@ - - + - {{ $tr('nextQuestion') }} - - - + {{ $tr('nextQuestion') }} + + + + + + {{ $tr('previousQuestion') }} + + + + - + + + + @@ -202,15 +224,42 @@ -

{{ $tr('areYouSure') }}

{{ $tr('unanswered', { numLeft: questionsUnanswered } ) }}

+

{{ $tr('areYouSure') }}

+ + + + + + + {{ coreString('cancelAction') }} + + + + + + {{ $tr('tryAgain') }} + + +
@@ -518,7 +567,7 @@ }, $trs: { submitExam: { - message: 'Submit', + message: 'Submit Quiz', context: 'Action that learner takes to submit their quiz answers so that the coach can review them.', }, @@ -557,6 +606,11 @@ context: 'Indicates that a learner cannot submit the quiz because they are not able to see all the questions.', }, + tryAgain:{ + message:'Try Again', + context:'Indicates that quiz can only be submitted with all questions answered.' + } + }, }; @@ -635,4 +689,9 @@ font-size:1.5em; } + .btn-size{ + width:100%; + margin-top:1em; + } + From fac89d60969cc1d638889e2be0a094b86e3ee2da Mon Sep 17 00:00:00 2001 From: Allan Otodi Opeto <103313919+AllanOXDi@users.noreply.github.com> Date: Fri, 22 Dec 2023 21:03:37 +0300 Subject: [PATCH 09/17] set questionsourcestoV3 --- kolibri/core/assets/src/exams/utils.js | 2 +- .../assets/src/modules/examViewer/handlers.js | 34 +++++++++++++------ 2 files changed, 25 insertions(+), 11 deletions(-) diff --git a/kolibri/core/assets/src/exams/utils.js b/kolibri/core/assets/src/exams/utils.js index d1f3a8d732..a59f1e571f 100644 --- a/kolibri/core/assets/src/exams/utils.js +++ b/kolibri/core/assets/src/exams/utils.js @@ -114,7 +114,7 @@ export function revertV3toV2(questionSources) { /** * @param {object} exam - an exam object of any question_sources version - * @returns V2 formatted question_sources + * @returns V3 formatted question_sources */ export function convertExamQuestionSourcesToV3(exam, extraArgs = {}) { if (exam.data_model_version !== 3) { diff --git a/kolibri/plugins/learn/assets/src/modules/examViewer/handlers.js b/kolibri/plugins/learn/assets/src/modules/examViewer/handlers.js index 6096f798fd..2f91ea1091 100644 --- a/kolibri/plugins/learn/assets/src/modules/examViewer/handlers.js +++ b/kolibri/plugins/learn/assets/src/modules/examViewer/handlers.js @@ -1,6 +1,6 @@ import { ContentNodeResource, ExamResource } from 'kolibri.resources'; import samePageCheckGenerator from 'kolibri.utils.samePageCheckGenerator'; -import { convertExamQuestionSources } from 'kolibri.utils.exams'; +import { convertExamQuestionSourcesToV3 } from 'kolibri.utils.exams'; import shuffled from 'kolibri.utils.shuffled'; import { ClassesPageNames } from '../../constants'; import { LearnerClassroomResource } from '../../apiResources'; @@ -31,9 +31,13 @@ export function showExam(store, params, alreadyOnQuiz) { let contentPromise; if (exam.question_sources.length) { + const allExerciseIds = exam.question_sources.reduce((acc, section) => { + acc = [...acc, ...section.questions.map(q => q.exercise_id)]; + return acc; + }, []); contentPromise = ContentNodeResource.fetchCollection({ getParams: { - ids: exam.question_sources.map(item => item.exercise_id), + ids: allExerciseIds, }, }); } else { @@ -43,16 +47,26 @@ export function showExam(store, params, alreadyOnQuiz) { contentNodes => { if (shouldResolve()) { // If necessary, convert the question source info - let questions = convertExamQuestionSources(exam, { contentNodes }); + const question_sources = convertExamQuestionSourcesToV3(exam, { contentNodes }); // When necessary, randomize the questions for the learner. // Seed based on the user ID so they see a consistent order each time. - if (!exam.learners_see_fixed_order) { - questions = shuffled(questions, store.state.core.session.user_id); - } + question_sources.forEach(section => { + if (!section.learners_see_fixed_order) { + section.questions = shuffled( + section.questions, + store.state.core.session.user_id + ); + } + }); + + const allQuestions = question_sources.reduce((acc, section) => { + acc = [...acc, ...section.questions]; + return acc; + }, []); // Exam is drawing solely on malformed exercise data, best to quit now - if (questions.some(question => !question.question_id)) { + if (allQuestions.some(question => !question.question_id)) { store.dispatch( 'handleError', `This quiz cannot be displayed:\nQuestion sources: ${JSON.stringify( @@ -62,7 +76,7 @@ export function showExam(store, params, alreadyOnQuiz) { return; } // Illegal question number! - else if (questionNumber >= questions.length) { + else if (questionNumber >= allQuestions.length) { store.dispatch( 'handleError', `Question number ${questionNumber} is not valid for this quiz` @@ -76,7 +90,7 @@ export function showExam(store, params, alreadyOnQuiz) { contentNodeMap[node.id] = node; } - for (const question of questions) { + for (const question of allQuestions) { question.missing = !contentNodeMap[question.exercise_id]; } @@ -84,7 +98,7 @@ export function showExam(store, params, alreadyOnQuiz) { contentNodeMap, exam, questionNumber, - questions, + questions: allQuestions, }); store.commit('CORE_SET_PAGE_LOADING', false); store.commit('CORE_SET_ERROR', null); From af90191261748f373c6ea783d5877ca9a8a97af2 Mon Sep 17 00:00:00 2001 From: Allan Otodi Opeto <103313919+AllanOXDi@users.noreply.github.com> Date: Fri, 22 Dec 2023 22:32:54 +0300 Subject: [PATCH 10/17] code cleanup --- kolibri/core/assets/src/exams/utils.js | 4 +- .../assets/src/modules/examViewer/handlers.js | 26 ++- .../learn/assets/src/views/ExamPage/index.vue | 198 ++++++++---------- 3 files changed, 103 insertions(+), 125 deletions(-) diff --git a/kolibri/core/assets/src/exams/utils.js b/kolibri/core/assets/src/exams/utils.js index a59f1e571f..31721e2409 100644 --- a/kolibri/core/assets/src/exams/utils.js +++ b/kolibri/core/assets/src/exams/utils.js @@ -96,8 +96,8 @@ export function convertV2toV3(questionSources, exam) { const questions = annotateQuestionsWithItem(questionSources); return { section_id: uuidv4(), - section_title: '', - description: '', + section_title: 'Section one', + description: 'Sample description', resource_pool: [], questions, learners_see_fixed_order: exam.learners_see_fixed_order, diff --git a/kolibri/plugins/learn/assets/src/modules/examViewer/handlers.js b/kolibri/plugins/learn/assets/src/modules/examViewer/handlers.js index 2f91ea1091..49e1100256 100644 --- a/kolibri/plugins/learn/assets/src/modules/examViewer/handlers.js +++ b/kolibri/plugins/learn/assets/src/modules/examViewer/handlers.js @@ -30,11 +30,17 @@ export function showExam(store, params, alreadyOnQuiz) { store.commit('classAssignments/SET_CURRENT_CLASSROOM', classroom); let contentPromise; - if (exam.question_sources.length) { - const allExerciseIds = exam.question_sources.reduce((acc, section) => { + let allExerciseIds = []; + if (exam.data_version == 3) { + allExerciseIds = exam.question_sources.reduce((acc, section) => { + console.log(section); acc = [...acc, ...section.questions.map(q => q.exercise_id)]; return acc; }, []); + } else { + allExerciseIds = exam.question_sources.map(q => q.exercise_id); + } + if (allExerciseIds.length) { contentPromise = ContentNodeResource.fetchCollection({ getParams: { ids: allExerciseIds, @@ -70,7 +76,7 @@ export function showExam(store, params, alreadyOnQuiz) { store.dispatch( 'handleError', `This quiz cannot be displayed:\nQuestion sources: ${JSON.stringify( - questions + allQuestions )}\nExam: ${JSON.stringify(exam)}` ); return; @@ -93,13 +99,13 @@ export function showExam(store, params, alreadyOnQuiz) { for (const question of allQuestions) { question.missing = !contentNodeMap[question.exercise_id]; } - - store.commit('examViewer/SET_STATE', { - contentNodeMap, - exam, - questionNumber, - questions: allQuestions, - }); + (exam.question_sources = question_sources), + store.commit('examViewer/SET_STATE', { + contentNodeMap, + exam, + questionNumber, + questions: allQuestions, + }); store.commit('CORE_SET_PAGE_LOADING', false); store.commit('CORE_SET_ERROR', null); } diff --git a/kolibri/plugins/learn/assets/src/views/ExamPage/index.vue b/kolibri/plugins/learn/assets/src/views/ExamPage/index.vue index f26b9545b9..f21b5f3352 100644 --- a/kolibri/plugins/learn/assets/src/views/ExamPage/index.vue +++ b/kolibri/plugins/learn/assets/src/views/ExamPage/index.vue @@ -15,47 +15,48 @@ class="column-pane" >
+
- - - - Calculus - - - - -
- -
-
-
- -

- Lorem ipsum dolor sit, - amet consectetur adipisicing elit. - Nostrum dolore tempore aut, nemo ad numquam perspiciatis - iure amet ex dolores quod nobis vitae soluta aliquam, eius - eum, vero accusamus laboriosam! -

+
+ + + + {{ section.section_title }} + + + + +
+ +
+
+
+ +

+ {{ section.description }} +

+
+ + + + + +
- - - +
@@ -183,35 +189,20 @@ - - - - @@ -230,33 +221,32 @@

{{ $tr('areYouSure') }}

- - + - {{ coreString('cancelAction') }} + {{ coreString('cancelAction') }} - {{ $tr('tryAgain') }} + {{ $tr('tryAgain') }} @@ -272,11 +262,7 @@ import isEqual from 'lodash/isEqual'; import debounce from 'lodash/debounce'; import BottomAppBar from 'kolibri.coreVue.components.BottomAppBar'; - import UiAlert from 'kolibri-design-system/lib/keen/UiAlert'; - import UiIconButton from 'kolibri.coreVue.components.UiIconButton'; import useKResponsiveWindow from 'kolibri-design-system/lib/useKResponsiveWindow'; - import SuggestedTime from 'kolibri.coreVue.components.SuggestedTime'; - import TimeDuration from 'kolibri.coreVue.components.TimeDuration'; import commonCoreStrings from 'kolibri.coreVue.mixins.commonCoreStrings'; import ImmersivePage from 'kolibri.coreVue.components.ImmersivePage'; import ResourceSyncingUiAlert from '../ResourceSyncingUiAlert'; @@ -295,11 +281,7 @@ }, components: { AnswerHistory, - UiAlert, - UiIconButton, BottomAppBar, - TimeDuration, - SuggestedTime, ImmersivePage, ResourceSyncingUiAlert, }, @@ -351,11 +333,6 @@ } return {}; }, - descriptionBackgroundColor(){ - return { - background: this.$themeTokens - } - }, answeredText() { return this.$tr('questionsAnswered', { numAnswered: this.questionsAnswered, @@ -425,11 +402,6 @@ // https://github.com/vuejs/vue/issues/2870#issuecomment-219096773 return debounce(this.setAndSaveCurrentExamAttemptLog, 500); }, - bottomBarLayoutDirection() { - // Allows contents to be displayed visually in reverse-order, - // but semantically in correct order. - return this.isRtl ? 'ltr' : 'rtl'; - }, layoutDirReset() { // Overrides bottomBarLayoutDirection reversal return this.isRtl ? 'rtl' : 'ltr'; @@ -606,11 +578,10 @@ context: 'Indicates that a learner cannot submit the quiz because they are not able to see all the questions.', }, - tryAgain:{ - message:'Try Again', - context:'Indicates that quiz can only be submitted with all questions answered.' - } - + tryAgain: { + message: 'Try Again', + context: 'Indicates that quiz can only be submitted with all questions answered.', + }, }, }; @@ -677,21 +648,22 @@ text-align: center; } - .spacing-items{ - padding:0.5em; + .spacing-items { + padding: 0.5em; } - .quiz-title{ - font-size:14px; - font-weight:700; + .quiz-title { + font-size: 14px; + font-weight: 700; } - .icon-size{ - font-size:1.5em; + + .icon-size { + font-size: 1.5em; } - .btn-size{ - width:100%; - margin-top:1em; + .btn-size { + width: 100%; + margin-top: 1em; } From 8c2f0505f5fb483993573d1a0c9eae60e29c8bda Mon Sep 17 00:00:00 2001 From: Allan Otodi Opeto <103313919+AllanOXDi@users.noreply.github.com> Date: Fri, 22 Dec 2023 22:37:18 +0300 Subject: [PATCH 11/17] Delete .trunk/.gitignore --- .trunk/.gitignore | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .trunk/.gitignore diff --git a/.trunk/.gitignore b/.trunk/.gitignore deleted file mode 100644 index 1e24652901..0000000000 --- a/.trunk/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -*out -*logs -*actions -*notifications -*tools -plugins -user_trunk.yaml -user.yaml From 912ff8269be15f89ca3616229c602375dba955fe Mon Sep 17 00:00:00 2001 From: Allan Otodi Opeto <103313919+AllanOXDi@users.noreply.github.com> Date: Fri, 22 Dec 2023 22:38:03 +0300 Subject: [PATCH 12/17] Delete .trunk/trunk.yaml --- .trunk/trunk.yaml | 51 ----------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .trunk/trunk.yaml diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml deleted file mode 100644 index eb1dce5e0d..0000000000 --- a/.trunk/trunk.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# This file controls the behavior of Trunk: https://docs.trunk.io/cli -# To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml -version: 0.1 -cli: - version: 1.18.0 -# Trunk provides extensibility via plugins. (https://docs.trunk.io/plugins) -plugins: - sources: - - id: trunk - ref: v1.4.0 - uri: https://github.com/trunk-io/plugins -# Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes) -runtimes: - enabled: - - go@1.21.0 - - node@18.12.1 - - python@3.10.8 -# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration) -lint: - enabled: - - actionlint@1.6.26 - - bandit@1.7.5 - - black@23.9.1 - - checkov@3.1.9 - - eslint@8.54.0 - - flake8@6.1.0 - - git-diff-check - - hadolint@2.12.0 - - isort@5.12.0 - - markdownlint@0.37.0 - - osv-scanner@1.5.0 - - oxipng@9.0.0 - - prettier@3.1.0 - - ruff@0.1.7 - - shellcheck@0.9.0 - - shfmt@3.6.0 - - stylelint@15.11.0 - - svgo@3.0.5 - - taplo@0.8.1 - - terrascan@1.18.5 - - trivy@0.48.0 - - trufflehog@3.63.2 - - yamllint@1.33.0 -actions: - disabled: - - git-lfs - - trunk-announce - - trunk-check-pre-push - - trunk-fmt-pre-commit - enabled: - - trunk-upgrade-available From dbbbd5bfaeff3fef3cbe5f346b730aef01ac3b03 Mon Sep 17 00:00:00 2001 From: Allan Otodi Opeto <103313919+AllanOXDi@users.noreply.github.com> Date: Fri, 22 Dec 2023 22:40:23 +0300 Subject: [PATCH 13/17] removed trunk --- .trunk/actions | 1 + .trunk/dev-logs/vscode.log | 51 +++++++++++++++++++++++++ .trunk/dev-logs/vscode1.log | 74 +++++++++++++++++++++++++++++++++++++ .trunk/dev-logs/vscode2.log | 6 +++ .trunk/logs | 1 + .trunk/notifications | 1 + .trunk/out | 1 + .trunk/plugins/trunk | 1 + .trunk/tools | 1 + 9 files changed, 137 insertions(+) create mode 120000 .trunk/actions create mode 100644 .trunk/dev-logs/vscode.log create mode 100644 .trunk/dev-logs/vscode1.log create mode 100644 .trunk/dev-logs/vscode2.log create mode 120000 .trunk/logs create mode 120000 .trunk/notifications create mode 120000 .trunk/out create mode 120000 .trunk/plugins/trunk create mode 120000 .trunk/tools diff --git a/.trunk/actions b/.trunk/actions new file mode 120000 index 0000000000..1a03de028e --- /dev/null +++ b/.trunk/actions @@ -0,0 +1 @@ +/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/actions \ No newline at end of file diff --git a/.trunk/dev-logs/vscode.log b/.trunk/dev-logs/vscode.log new file mode 100644 index 0000000000..21f1d5ee82 --- /dev/null +++ b/.trunk/dev-logs/vscode.log @@ -0,0 +1,51 @@ +2023-11-29T16:14:38.797Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-11-29T16:14:38.828Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-11-29T16:14:39.404Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-11-29T16:14:39.404Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-11-29T16:14:39.431Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-11-29T16:14:39.431Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-11-29T16:14:41.424Z [error] Stopping the server timed out +2023-11-29T16:14:41.444Z [error] Stopping the server timed out +2023-11-29T17:04:21.996Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-29T17:04:22.054Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-29T17:05:17.213Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-29T17:05:17.219Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-29T17:09:25.787Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-29T17:09:25.813Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-29T17:09:25.899Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-29T17:09:25.900Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-29T17:10:00.995Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-29T17:10:01.014Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-29T18:54:11.197Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-11-29T18:54:13.351Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-11-29T18:54:13.354Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-11-29T18:54:15.519Z [error] Stopping the server timed out +2023-11-30T12:05:16.668Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-11-30T12:05:17.057Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-11-30T12:05:17.058Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-11-30T12:05:19.067Z [error] Stopping the server timed out +2023-11-30T16:15:55.574Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-30T16:17:13.061Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-30T16:17:41.259Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-30T16:17:41.339Z [error] Failed to get available upgrades: Error: Client is not running +2023-11-30T17:09:47.111Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-01T12:41:56.596Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-12-01T12:41:57.022Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-01T12:41:57.023Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-01T12:41:59.031Z [error] Stopping the server timed out +2023-12-01T12:42:42.866Z [crit] getaddrinfo ENOTFOUND api.mixpanel.com +2023-12-01T13:31:35.327Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-12-01T13:31:35.683Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-01T13:31:35.684Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-01T13:31:37.696Z [error] Stopping the server timed out +2023-12-01T14:04:15.797Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-12-01T14:04:16.164Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-01T14:04:16.165Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-01T14:04:18.182Z [error] Stopping the server timed out +2023-12-01T14:06:11.039Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-12-01T14:06:11.377Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-01T14:06:11.378Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-01T14:06:13.388Z [error] Stopping the server timed out +2023-12-01T14:26:37.834Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-12-01T14:26:38.257Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-01T14:26:38.258Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information diff --git a/.trunk/dev-logs/vscode1.log b/.trunk/dev-logs/vscode1.log new file mode 100644 index 0000000000..69f9a95fff --- /dev/null +++ b/.trunk/dev-logs/vscode1.log @@ -0,0 +1,74 @@ +2023-12-01T14:26:40.271Z [error] Stopping the server timed out +2023-12-01T16:14:56.477Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-01T16:16:14.091Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-01T16:17:25.748Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-01T16:17:25.838Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-01T17:10:25.287Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-01T17:54:51.779Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-12-01T17:55:20.265Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-01T17:55:20.266Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-01T17:55:22.310Z [error] Stopping the server timed out +2023-12-01T18:01:17.023Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-01T18:01:19.404Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-01T18:03:00.503Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-01T18:03:00.578Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-01T18:55:27.626Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-03T08:07:25.899Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-03T08:07:26.002Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-03T08:08:29.465Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-03T08:09:53.496Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-03T08:09:53.585Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-04T16:08:46.717Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-04T16:09:54.109Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-04T16:10:57.702Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-04T16:12:31.998Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-04T16:12:32.218Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-04T18:12:30.641Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-04T18:13:33.255Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-04T18:16:32.416Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-04T18:16:32.524Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-04T19:01:35.131Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-05T17:59:55.784Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-05T17:59:58.353Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-05T18:00:22.806Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-05T18:00:22.912Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-05T18:54:55.034Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-06T18:00:04.705Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-06T18:00:11.755Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-06T18:00:38.877Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-06T18:00:38.979Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-06T18:55:03.216Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-07T17:20:39.785Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-12-07T17:20:40.191Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-07T17:20:40.191Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-07T17:20:42.203Z [error] Stopping the server timed out +2023-12-08T18:19:22.389Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-12-08T18:19:25.926Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-08T18:19:25.927Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-08T18:19:27.937Z [error] Stopping the server timed out +2023-12-08T19:06:29.126Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-08T19:07:31.444Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-08T19:08:56.370Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-08T19:08:56.448Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-08T19:11:50.195Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-10T12:41:43.173Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-10T12:41:43.453Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-10T12:43:05.307Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-10T12:54:08.578Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-10T12:54:08.656Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-10T13:41:33.905Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-10T13:41:48.746Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-10T13:47:50.016Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-10T13:47:50.096Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-10T13:54:15.254Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-11T14:50:29.483Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-12-11T14:51:58.917Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-11T14:51:58.917Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-11T14:52:00.925Z [error] Stopping the server timed out +2023-12-11T15:01:48.878Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-11T15:03:06.272Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-11T15:04:16.018Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-11T15:04:16.134Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-11T16:04:00.699Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-12-11T16:04:39.427Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-11T16:04:39.427Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information diff --git a/.trunk/dev-logs/vscode2.log b/.trunk/dev-logs/vscode2.log new file mode 100644 index 0000000000..cbc38569f2 --- /dev/null +++ b/.trunk/dev-logs/vscode2.log @@ -0,0 +1,6 @@ +2023-12-11T16:04:41.437Z [error] Stopping the server timed out +2023-12-18T19:57:36.583Z [error] Failed to get available upgrades: Error: Client is not running +2023-12-18T19:57:44.940Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} +2023-12-18T19:57:50.366Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-18T19:57:50.369Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information +2023-12-18T19:57:52.455Z [error] Stopping the server timed out diff --git a/.trunk/logs b/.trunk/logs new file mode 120000 index 0000000000..474da17742 --- /dev/null +++ b/.trunk/logs @@ -0,0 +1 @@ +/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/logs \ No newline at end of file diff --git a/.trunk/notifications b/.trunk/notifications new file mode 120000 index 0000000000..d55ccd53d6 --- /dev/null +++ b/.trunk/notifications @@ -0,0 +1 @@ +/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/notifications \ No newline at end of file diff --git a/.trunk/out b/.trunk/out new file mode 120000 index 0000000000..21e36143a4 --- /dev/null +++ b/.trunk/out @@ -0,0 +1 @@ +/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/out \ No newline at end of file diff --git a/.trunk/plugins/trunk b/.trunk/plugins/trunk new file mode 120000 index 0000000000..96c24dccef --- /dev/null +++ b/.trunk/plugins/trunk @@ -0,0 +1 @@ +/Users/allan/.cache/trunk/plugins/https---github-com-trunk-io-plugins/v1.4.0-4ebadccd80b22638 \ No newline at end of file diff --git a/.trunk/tools b/.trunk/tools new file mode 120000 index 0000000000..53a442e19e --- /dev/null +++ b/.trunk/tools @@ -0,0 +1 @@ +/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/tools \ No newline at end of file From cfc91482f634784040a9bde035f4ac58051f5b12 Mon Sep 17 00:00:00 2001 From: Allan Otodi Opeto <103313919+AllanOXDi@users.noreply.github.com> Date: Fri, 22 Dec 2023 22:44:05 +0300 Subject: [PATCH 14/17] removed trunk --- .trunk/actions | 1 - .trunk/configs/.hadolint.yaml | 4 -- .trunk/configs/.isort.cfg | 2 - .trunk/configs/.markdownlint.yaml | 10 ----- .trunk/configs/.shellcheckrc | 7 --- .trunk/configs/.yamllint.yaml | 10 ----- .trunk/configs/ruff.toml | 5 --- .trunk/configs/svgo.config.js | 14 ------ .trunk/dev-logs/vscode.log | 51 --------------------- .trunk/dev-logs/vscode1.log | 74 ------------------------------- .trunk/dev-logs/vscode2.log | 6 --- .trunk/logs | 1 - .trunk/notifications | 1 - .trunk/out | 1 - .trunk/plugins/trunk | 1 - .trunk/tools | 1 - 16 files changed, 189 deletions(-) delete mode 120000 .trunk/actions delete mode 100644 .trunk/configs/.hadolint.yaml delete mode 100644 .trunk/configs/.isort.cfg delete mode 100644 .trunk/configs/.markdownlint.yaml delete mode 100644 .trunk/configs/.shellcheckrc delete mode 100644 .trunk/configs/.yamllint.yaml delete mode 100644 .trunk/configs/ruff.toml delete mode 100644 .trunk/configs/svgo.config.js delete mode 100644 .trunk/dev-logs/vscode.log delete mode 100644 .trunk/dev-logs/vscode1.log delete mode 100644 .trunk/dev-logs/vscode2.log delete mode 120000 .trunk/logs delete mode 120000 .trunk/notifications delete mode 120000 .trunk/out delete mode 120000 .trunk/plugins/trunk delete mode 120000 .trunk/tools diff --git a/.trunk/actions b/.trunk/actions deleted file mode 120000 index 1a03de028e..0000000000 --- a/.trunk/actions +++ /dev/null @@ -1 +0,0 @@ -/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/actions \ No newline at end of file diff --git a/.trunk/configs/.hadolint.yaml b/.trunk/configs/.hadolint.yaml deleted file mode 100644 index 98bf0cd2ee..0000000000 --- a/.trunk/configs/.hadolint.yaml +++ /dev/null @@ -1,4 +0,0 @@ -# Following source doesn't work in most setups -ignored: - - SC1090 - - SC1091 diff --git a/.trunk/configs/.isort.cfg b/.trunk/configs/.isort.cfg deleted file mode 100644 index b9fb3f3e8c..0000000000 --- a/.trunk/configs/.isort.cfg +++ /dev/null @@ -1,2 +0,0 @@ -[settings] -profile=black diff --git a/.trunk/configs/.markdownlint.yaml b/.trunk/configs/.markdownlint.yaml deleted file mode 100644 index fb940393d6..0000000000 --- a/.trunk/configs/.markdownlint.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Autoformatter friendly markdownlint config (all formatting rules disabled) -default: true -blank_lines: false -bullet: false -html: false -indentation: false -line_length: false -spaces: false -url: false -whitespace: false diff --git a/.trunk/configs/.shellcheckrc b/.trunk/configs/.shellcheckrc deleted file mode 100644 index 8c7b1ada8a..0000000000 --- a/.trunk/configs/.shellcheckrc +++ /dev/null @@ -1,7 +0,0 @@ -enable=all -source-path=SCRIPTDIR -disable=SC2154 - -# If you're having issues with shellcheck following source, disable the errors via: -# disable=SC1090 -# disable=SC1091 diff --git a/.trunk/configs/.yamllint.yaml b/.trunk/configs/.yamllint.yaml deleted file mode 100644 index 4d444662de..0000000000 --- a/.trunk/configs/.yamllint.yaml +++ /dev/null @@ -1,10 +0,0 @@ -rules: - quoted-strings: - required: only-when-needed - extra-allowed: ["{|}"] - empty-values: - forbid-in-block-mappings: true - forbid-in-flow-mappings: true - key-duplicates: {} - octal-values: - forbid-implicit-octal: true diff --git a/.trunk/configs/ruff.toml b/.trunk/configs/ruff.toml deleted file mode 100644 index f5a235cf91..0000000000 --- a/.trunk/configs/ruff.toml +++ /dev/null @@ -1,5 +0,0 @@ -# Generic, formatter-friendly config. -select = ["B", "D3", "E", "F"] - -# Never enforce `E501` (line length violations). This should be handled by formatters. -ignore = ["E501"] diff --git a/.trunk/configs/svgo.config.js b/.trunk/configs/svgo.config.js deleted file mode 100644 index b257d13493..0000000000 --- a/.trunk/configs/svgo.config.js +++ /dev/null @@ -1,14 +0,0 @@ -module.exports = { - plugins: [ - { - name: "preset-default", - params: { - overrides: { - removeViewBox: false, // https://github.com/svg/svgo/issues/1128 - sortAttrs: true, - removeOffCanvasPaths: true, - }, - }, - }, - ], -}; diff --git a/.trunk/dev-logs/vscode.log b/.trunk/dev-logs/vscode.log deleted file mode 100644 index 21f1d5ee82..0000000000 --- a/.trunk/dev-logs/vscode.log +++ /dev/null @@ -1,51 +0,0 @@ -2023-11-29T16:14:38.797Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-11-29T16:14:38.828Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-11-29T16:14:39.404Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-11-29T16:14:39.404Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-11-29T16:14:39.431Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-11-29T16:14:39.431Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-11-29T16:14:41.424Z [error] Stopping the server timed out -2023-11-29T16:14:41.444Z [error] Stopping the server timed out -2023-11-29T17:04:21.996Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-29T17:04:22.054Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-29T17:05:17.213Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-29T17:05:17.219Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-29T17:09:25.787Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-29T17:09:25.813Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-29T17:09:25.899Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-29T17:09:25.900Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-29T17:10:00.995Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-29T17:10:01.014Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-29T18:54:11.197Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-11-29T18:54:13.351Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-11-29T18:54:13.354Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-11-29T18:54:15.519Z [error] Stopping the server timed out -2023-11-30T12:05:16.668Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-11-30T12:05:17.057Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-11-30T12:05:17.058Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-11-30T12:05:19.067Z [error] Stopping the server timed out -2023-11-30T16:15:55.574Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-30T16:17:13.061Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-30T16:17:41.259Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-30T16:17:41.339Z [error] Failed to get available upgrades: Error: Client is not running -2023-11-30T17:09:47.111Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-01T12:41:56.596Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-12-01T12:41:57.022Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-01T12:41:57.023Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-01T12:41:59.031Z [error] Stopping the server timed out -2023-12-01T12:42:42.866Z [crit] getaddrinfo ENOTFOUND api.mixpanel.com -2023-12-01T13:31:35.327Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-12-01T13:31:35.683Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-01T13:31:35.684Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-01T13:31:37.696Z [error] Stopping the server timed out -2023-12-01T14:04:15.797Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-12-01T14:04:16.164Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-01T14:04:16.165Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-01T14:04:18.182Z [error] Stopping the server timed out -2023-12-01T14:06:11.039Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-12-01T14:06:11.377Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-01T14:06:11.378Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-01T14:06:13.388Z [error] Stopping the server timed out -2023-12-01T14:26:37.834Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-12-01T14:26:38.257Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-01T14:26:38.258Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information diff --git a/.trunk/dev-logs/vscode1.log b/.trunk/dev-logs/vscode1.log deleted file mode 100644 index 69f9a95fff..0000000000 --- a/.trunk/dev-logs/vscode1.log +++ /dev/null @@ -1,74 +0,0 @@ -2023-12-01T14:26:40.271Z [error] Stopping the server timed out -2023-12-01T16:14:56.477Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-01T16:16:14.091Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-01T16:17:25.748Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-01T16:17:25.838Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-01T17:10:25.287Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-01T17:54:51.779Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-12-01T17:55:20.265Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-01T17:55:20.266Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-01T17:55:22.310Z [error] Stopping the server timed out -2023-12-01T18:01:17.023Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-01T18:01:19.404Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-01T18:03:00.503Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-01T18:03:00.578Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-01T18:55:27.626Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-03T08:07:25.899Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-03T08:07:26.002Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-03T08:08:29.465Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-03T08:09:53.496Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-03T08:09:53.585Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-04T16:08:46.717Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-04T16:09:54.109Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-04T16:10:57.702Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-04T16:12:31.998Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-04T16:12:32.218Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-04T18:12:30.641Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-04T18:13:33.255Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-04T18:16:32.416Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-04T18:16:32.524Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-04T19:01:35.131Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-05T17:59:55.784Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-05T17:59:58.353Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-05T18:00:22.806Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-05T18:00:22.912Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-05T18:54:55.034Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-06T18:00:04.705Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-06T18:00:11.755Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-06T18:00:38.877Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-06T18:00:38.979Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-06T18:55:03.216Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-07T17:20:39.785Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-12-07T17:20:40.191Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-07T17:20:40.191Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-07T17:20:42.203Z [error] Stopping the server timed out -2023-12-08T18:19:22.389Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-12-08T18:19:25.926Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-08T18:19:25.927Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-08T18:19:27.937Z [error] Stopping the server timed out -2023-12-08T19:06:29.126Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-08T19:07:31.444Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-08T19:08:56.370Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-08T19:08:56.448Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-08T19:11:50.195Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-10T12:41:43.173Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-10T12:41:43.453Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-10T12:43:05.307Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-10T12:54:08.578Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-10T12:54:08.656Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-10T13:41:33.905Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-10T13:41:48.746Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-10T13:47:50.016Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-10T13:47:50.096Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-10T13:54:15.254Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-11T14:50:29.483Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-12-11T14:51:58.917Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-11T14:51:58.917Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-11T14:52:00.925Z [error] Stopping the server timed out -2023-12-11T15:01:48.878Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-11T15:03:06.272Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-11T15:04:16.018Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-11T15:04:16.134Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-11T16:04:00.699Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-12-11T16:04:39.427Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-11T16:04:39.427Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information diff --git a/.trunk/dev-logs/vscode2.log b/.trunk/dev-logs/vscode2.log deleted file mode 100644 index cbc38569f2..0000000000 --- a/.trunk/dev-logs/vscode2.log +++ /dev/null @@ -1,6 +0,0 @@ -2023-12-11T16:04:41.437Z [error] Stopping the server timed out -2023-12-18T19:57:36.583Z [error] Failed to get available upgrades: Error: Client is not running -2023-12-18T19:57:44.940Z [debug] Starting Trunk language client with run config: {"command":"/Users/allan/.cache/trunk/launcher/trunk","args":["lsp-proxy"],"options":{"cwd":"/Users/allan/dev/kolibri","detached":false,"shell":false}} -2023-12-18T19:57:50.366Z [error] Received critical error from lsp proxy: Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-18T19:57:50.369Z [error] Unable to detect an upstream commit on this branch: Unable to detect a trunk branch such as 'main'. Checked the following - refs/remotes/origin/HEAD, refs/remotes/origin/main, refs/remotes/origin/master, main, master. See https://docs.trunk.io/docs/reference-trunk-yaml#repo for more information -2023-12-18T19:57:52.455Z [error] Stopping the server timed out diff --git a/.trunk/logs b/.trunk/logs deleted file mode 120000 index 474da17742..0000000000 --- a/.trunk/logs +++ /dev/null @@ -1 +0,0 @@ -/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/logs \ No newline at end of file diff --git a/.trunk/notifications b/.trunk/notifications deleted file mode 120000 index d55ccd53d6..0000000000 --- a/.trunk/notifications +++ /dev/null @@ -1 +0,0 @@ -/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/notifications \ No newline at end of file diff --git a/.trunk/out b/.trunk/out deleted file mode 120000 index 21e36143a4..0000000000 --- a/.trunk/out +++ /dev/null @@ -1 +0,0 @@ -/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/out \ No newline at end of file diff --git a/.trunk/plugins/trunk b/.trunk/plugins/trunk deleted file mode 120000 index 96c24dccef..0000000000 --- a/.trunk/plugins/trunk +++ /dev/null @@ -1 +0,0 @@ -/Users/allan/.cache/trunk/plugins/https---github-com-trunk-io-plugins/v1.4.0-4ebadccd80b22638 \ No newline at end of file diff --git a/.trunk/tools b/.trunk/tools deleted file mode 120000 index 53a442e19e..0000000000 --- a/.trunk/tools +++ /dev/null @@ -1 +0,0 @@ -/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/tools \ No newline at end of file From b2c54e8f970acae9e666b391aa310d28cc9a0acb Mon Sep 17 00:00:00 2001 From: Allan Otodi Opeto <103313919+AllanOXDi@users.noreply.github.com> Date: Fri, 29 Dec 2023 01:21:48 +0300 Subject: [PATCH 15/17] add clickable chevron & section title --- .../2023-12-22-19-57-48.948.yaml | 14 ++ .../2023-12-23-19-57-54.496.yaml | 14 ++ .../2023-12-27-11-26-29.823.yaml | 14 ++ .../2023-12-27-11-26-29.866.yaml | 14 ++ .../2023-12-28-11-31-59.654.yaml | 14 ++ .../2023-12-22-19-57-49.99.yaml | 14 ++ .../2023-12-23-19-57-54.499.yaml | 14 ++ .../2023-12-27-11-26-29.823.yaml | 14 ++ .../2023-12-27-11-26-29.828.yaml | 14 ++ .../2023-12-28-11-31-59.642.yaml | 14 ++ .../2023-12-22-20-02-49.652.yaml | 14 ++ .../2023-12-23-20-02-54.235.yaml | 14 ++ .../2023-12-27-11-26-29.828.yaml | 14 ++ .../2023-12-27-11-26-30.2.yaml | 14 ++ .../2023-12-28-11-31-59.642.yaml | 14 ++ .../2023-12-23-18-12-48.954.yaml | 14 ++ .../2023-12-24-16-33-16.95.yaml | 14 ++ .../2023-12-27-11-26-29.825.yaml | 14 ++ .../2023-12-27-11-26-29.872.yaml | 14 ++ .../2023-12-28-11-31-59.630.yaml | 14 ++ .../2023-12-23-18-12-48.545.yaml | 14 ++ .../2023-12-23-18-12-48.867.yaml | 14 ++ .../2023-12-23-19-12-49.367.yaml | 14 ++ .../2023-12-23-20-12-49.567.yaml | 14 ++ .../2023-12-24-16-33-16.95.yaml | 14 ++ .../2023-12-27-11-26-29.813.yaml | 14 ++ .../2023-12-27-11-26-29.818.yaml | 14 ++ .../2023-12-27-12-26-31.766.yaml | 14 ++ .../2023-12-27-14-57-38.106.yaml | 14 ++ .../2023-12-27-14-57-39.212.yaml | 14 ++ .../2023-12-27-15-57-39.756.yaml | 14 ++ .../2023-12-27-17-03-00.854.yaml | 14 ++ .../2023-12-27-18-11-14.60.yaml | 14 ++ .../2023-12-28-06-31-47.729.yaml | 14 ++ .../2023-12-28-06-31-47.769.yaml | 14 ++ .../2023-12-28-09-30-16.902.yaml | 14 ++ .../2023-12-28-09-30-17.417.yaml | 14 ++ .../2023-12-28-11-31-59.649.yaml | 14 ++ .../2023-12-28-11-31-59.658.yaml | 14 ++ .../2023-12-28-12-31-59.290.yaml | 14 ++ .../2023-12-28-13-50-00.684.yaml | 14 ++ .../2023-12-28-14-56-36.541.yaml | 14 ++ .../2023-12-28-15-31-59.350.yaml | 14 ++ .../2023-12-28-17-19-19.770.yaml | 14 ++ .../2023-12-28-17-32-10.208.yaml | 14 ++ .../2023-12-28-18-32-20.207.yaml | 14 ++ .../2023-12-28-19-38-19.257.yaml | 14 ++ .../2023-12-28-20-39-49.328.yaml | 14 ++ .../2023-12-28-21-31-59.281.yaml | 14 ++ .trunk/logs | 1 + .trunk/notifications | 1 + .trunk/out | 1 + .trunk/tools | 1 + kolibri/core/assets/src/exams/utils.js | 4 +- .../assets/src/modules/examViewer/handlers.js | 15 +- .../learn/assets/src/views/ExamPage/index.vue | 142 +++++++++--------- 56 files changed, 773 insertions(+), 78 deletions(-) create mode 100644 .trunk/actions/trunk-cache-prune/2023-12-22-19-57-48.948.yaml create mode 100644 .trunk/actions/trunk-cache-prune/2023-12-23-19-57-54.496.yaml create mode 100644 .trunk/actions/trunk-cache-prune/2023-12-27-11-26-29.823.yaml create mode 100644 .trunk/actions/trunk-cache-prune/2023-12-27-11-26-29.866.yaml create mode 100644 .trunk/actions/trunk-cache-prune/2023-12-28-11-31-59.654.yaml create mode 100644 .trunk/actions/trunk-share-with-everyone/2023-12-22-19-57-49.99.yaml create mode 100644 .trunk/actions/trunk-share-with-everyone/2023-12-23-19-57-54.499.yaml create mode 100644 .trunk/actions/trunk-share-with-everyone/2023-12-27-11-26-29.823.yaml create mode 100644 .trunk/actions/trunk-share-with-everyone/2023-12-27-11-26-29.828.yaml create mode 100644 .trunk/actions/trunk-share-with-everyone/2023-12-28-11-31-59.642.yaml create mode 100644 .trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-22-20-02-49.652.yaml create mode 100644 .trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-23-20-02-54.235.yaml create mode 100644 .trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-27-11-26-29.828.yaml create mode 100644 .trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-27-11-26-30.2.yaml create mode 100644 .trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-28-11-31-59.642.yaml create mode 100644 .trunk/actions/trunk-single-player-auto-upgrade/2023-12-23-18-12-48.954.yaml create mode 100644 .trunk/actions/trunk-single-player-auto-upgrade/2023-12-24-16-33-16.95.yaml create mode 100644 .trunk/actions/trunk-single-player-auto-upgrade/2023-12-27-11-26-29.825.yaml create mode 100644 .trunk/actions/trunk-single-player-auto-upgrade/2023-12-27-11-26-29.872.yaml create mode 100644 .trunk/actions/trunk-single-player-auto-upgrade/2023-12-28-11-31-59.630.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-23-18-12-48.545.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-23-18-12-48.867.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-23-19-12-49.367.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-23-20-12-49.567.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-24-16-33-16.95.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-27-11-26-29.813.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-27-11-26-29.818.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-27-12-26-31.766.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-27-14-57-38.106.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-27-14-57-39.212.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-27-15-57-39.756.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-27-17-03-00.854.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-27-18-11-14.60.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-06-31-47.729.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-06-31-47.769.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-09-30-16.902.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-09-30-17.417.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-11-31-59.649.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-11-31-59.658.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-12-31-59.290.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-13-50-00.684.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-14-56-36.541.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-15-31-59.350.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-17-19-19.770.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-17-32-10.208.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-18-32-20.207.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-19-38-19.257.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-20-39-49.328.yaml create mode 100644 .trunk/actions/trunk-upgrade-available/2023-12-28-21-31-59.281.yaml create mode 120000 .trunk/logs create mode 120000 .trunk/notifications create mode 120000 .trunk/out create mode 120000 .trunk/tools diff --git a/.trunk/actions/trunk-cache-prune/2023-12-22-19-57-48.948.yaml b/.trunk/actions/trunk-cache-prune/2023-12-22-19-57-48.948.yaml new file mode 100644 index 0000000000..59b4506f4d --- /dev/null +++ b/.trunk/actions/trunk-cache-prune/2023-12-22-19-57-48.948.yaml @@ -0,0 +1,14 @@ +action_id: trunk-cache-prune +date: 2023-12-22 19:57:48 +run: trunk cache prune --allow-daemon-start=false +run_from: "" +trigger: schedule 24h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703275068 +full_timestamp: + nanos: 948044000 + seconds: 1703275068 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-cache-prune/2023-12-23-19-57-54.496.yaml b/.trunk/actions/trunk-cache-prune/2023-12-23-19-57-54.496.yaml new file mode 100644 index 0000000000..1a1e211d02 --- /dev/null +++ b/.trunk/actions/trunk-cache-prune/2023-12-23-19-57-54.496.yaml @@ -0,0 +1,14 @@ +action_id: trunk-cache-prune +date: 2023-12-23 19:57:54 +run: trunk cache prune --allow-daemon-start=false +run_from: "" +trigger: schedule 24h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703361474 +full_timestamp: + nanos: 496954000 + seconds: 1703361474 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-cache-prune/2023-12-27-11-26-29.823.yaml b/.trunk/actions/trunk-cache-prune/2023-12-27-11-26-29.823.yaml new file mode 100644 index 0000000000..dc910f6142 --- /dev/null +++ b/.trunk/actions/trunk-cache-prune/2023-12-27-11-26-29.823.yaml @@ -0,0 +1,14 @@ +action_id: trunk-cache-prune +date: 2023-12-27 11:26:29 +run: trunk cache prune --allow-daemon-start=false +run_from: "" +trigger: schedule 24h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703676389 +full_timestamp: + nanos: 823995000 + seconds: 1703676389 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-cache-prune/2023-12-27-11-26-29.866.yaml b/.trunk/actions/trunk-cache-prune/2023-12-27-11-26-29.866.yaml new file mode 100644 index 0000000000..1417aaa89d --- /dev/null +++ b/.trunk/actions/trunk-cache-prune/2023-12-27-11-26-29.866.yaml @@ -0,0 +1,14 @@ +action_id: trunk-cache-prune +date: 2023-12-27 11:26:29 +run: trunk cache prune --allow-daemon-start=false +run_from: "" +trigger: schedule 24h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703676389 +full_timestamp: + nanos: 866860000 + seconds: 1703676389 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-cache-prune/2023-12-28-11-31-59.654.yaml b/.trunk/actions/trunk-cache-prune/2023-12-28-11-31-59.654.yaml new file mode 100644 index 0000000000..7163d37682 --- /dev/null +++ b/.trunk/actions/trunk-cache-prune/2023-12-28-11-31-59.654.yaml @@ -0,0 +1,14 @@ +action_id: trunk-cache-prune +date: 2023-12-28 11:31:59 +run: trunk cache prune --allow-daemon-start=false +run_from: "" +trigger: schedule 24h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703763119 +full_timestamp: + nanos: 654909000 + seconds: 1703763119 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-share-with-everyone/2023-12-22-19-57-49.99.yaml b/.trunk/actions/trunk-share-with-everyone/2023-12-22-19-57-49.99.yaml new file mode 100644 index 0000000000..d4c8b46ab8 --- /dev/null +++ b/.trunk/actions/trunk-share-with-everyone/2023-12-22-19-57-49.99.yaml @@ -0,0 +1,14 @@ +action_id: trunk-share-with-everyone +date: 2023-12-22 19:57:49 +run: trunk config share --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 24h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703275069 +full_timestamp: + nanos: 99213000 + seconds: 1703275069 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-share-with-everyone/2023-12-23-19-57-54.499.yaml b/.trunk/actions/trunk-share-with-everyone/2023-12-23-19-57-54.499.yaml new file mode 100644 index 0000000000..b229798d84 --- /dev/null +++ b/.trunk/actions/trunk-share-with-everyone/2023-12-23-19-57-54.499.yaml @@ -0,0 +1,14 @@ +action_id: trunk-share-with-everyone +date: 2023-12-23 19:57:54 +run: trunk config share --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 24h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703361474 +full_timestamp: + nanos: 499979000 + seconds: 1703361474 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-share-with-everyone/2023-12-27-11-26-29.823.yaml b/.trunk/actions/trunk-share-with-everyone/2023-12-27-11-26-29.823.yaml new file mode 100644 index 0000000000..7e6f9fa49d --- /dev/null +++ b/.trunk/actions/trunk-share-with-everyone/2023-12-27-11-26-29.823.yaml @@ -0,0 +1,14 @@ +action_id: trunk-share-with-everyone +date: 2023-12-27 11:26:29 +run: trunk config share --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 24h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703676389 +full_timestamp: + nanos: 823351000 + seconds: 1703676389 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-share-with-everyone/2023-12-27-11-26-29.828.yaml b/.trunk/actions/trunk-share-with-everyone/2023-12-27-11-26-29.828.yaml new file mode 100644 index 0000000000..2688b2312e --- /dev/null +++ b/.trunk/actions/trunk-share-with-everyone/2023-12-27-11-26-29.828.yaml @@ -0,0 +1,14 @@ +action_id: trunk-share-with-everyone +date: 2023-12-27 11:26:29 +run: trunk config share --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 24h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703676389 +full_timestamp: + nanos: 828427000 + seconds: 1703676389 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-share-with-everyone/2023-12-28-11-31-59.642.yaml b/.trunk/actions/trunk-share-with-everyone/2023-12-28-11-31-59.642.yaml new file mode 100644 index 0000000000..3b6a5df66f --- /dev/null +++ b/.trunk/actions/trunk-share-with-everyone/2023-12-28-11-31-59.642.yaml @@ -0,0 +1,14 @@ +action_id: trunk-share-with-everyone +date: 2023-12-28 11:31:59 +run: trunk config share --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 24h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703763119 +full_timestamp: + nanos: 642784000 + seconds: 1703763119 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-22-20-02-49.652.yaml b/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-22-20-02-49.652.yaml new file mode 100644 index 0000000000..1f1d97adb4 --- /dev/null +++ b/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-22-20-02-49.652.yaml @@ -0,0 +1,14 @@ +action_id: trunk-single-player-auto-on-upgrade +date: 2023-12-22 20:02:49 +run: trunk on-upgrade --single-player-only -n --no-progress --allow-daemon-start=false --print-summary --scope=check,plugins,runtimes,tools +run_from: "" +trigger: schedule 24h+5m +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703275369 +full_timestamp: + nanos: 652783000 + seconds: 1703275369 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-23-20-02-54.235.yaml b/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-23-20-02-54.235.yaml new file mode 100644 index 0000000000..81167fae91 --- /dev/null +++ b/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-23-20-02-54.235.yaml @@ -0,0 +1,14 @@ +action_id: trunk-single-player-auto-on-upgrade +date: 2023-12-23 20:02:54 +run: trunk on-upgrade --single-player-only -n --no-progress --allow-daemon-start=false --print-summary --scope=check,plugins,runtimes,tools +run_from: "" +trigger: schedule 24h+5m +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703361774 +full_timestamp: + nanos: 235434000 + seconds: 1703361774 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-27-11-26-29.828.yaml b/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-27-11-26-29.828.yaml new file mode 100644 index 0000000000..7cdae64686 --- /dev/null +++ b/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-27-11-26-29.828.yaml @@ -0,0 +1,14 @@ +action_id: trunk-single-player-auto-on-upgrade +date: 2023-12-27 11:26:29 +run: trunk on-upgrade --single-player-only -n --no-progress --allow-daemon-start=false --print-summary --scope=check,plugins,runtimes,tools +run_from: "" +trigger: schedule 24h+5m +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703676389 +full_timestamp: + nanos: 828031000 + seconds: 1703676389 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-27-11-26-30.2.yaml b/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-27-11-26-30.2.yaml new file mode 100644 index 0000000000..dd333998bb --- /dev/null +++ b/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-27-11-26-30.2.yaml @@ -0,0 +1,14 @@ +action_id: trunk-single-player-auto-on-upgrade +date: 2023-12-27 11:26:30 +run: trunk on-upgrade --single-player-only -n --no-progress --allow-daemon-start=false --print-summary --scope=check,plugins,runtimes,tools +run_from: "" +trigger: schedule 24h+5m +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703676390 +full_timestamp: + nanos: 2157000 + seconds: 1703676390 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-28-11-31-59.642.yaml b/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-28-11-31-59.642.yaml new file mode 100644 index 0000000000..3cc148db43 --- /dev/null +++ b/.trunk/actions/trunk-single-player-auto-on-upgrade/2023-12-28-11-31-59.642.yaml @@ -0,0 +1,14 @@ +action_id: trunk-single-player-auto-on-upgrade +date: 2023-12-28 11:31:59 +run: trunk on-upgrade --single-player-only -n --no-progress --allow-daemon-start=false --print-summary --scope=check,plugins,runtimes,tools +run_from: "" +trigger: schedule 24h+5m +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703763119 +full_timestamp: + nanos: 642782000 + seconds: 1703763119 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-23-18-12-48.954.yaml b/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-23-18-12-48.954.yaml new file mode 100644 index 0000000000..d8444ba30e --- /dev/null +++ b/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-23-18-12-48.954.yaml @@ -0,0 +1,14 @@ +action_id: trunk-single-player-auto-upgrade +date: 2023-12-23 18:12:48 +run: trunk upgrade cli --single-player-only -n --no-progress --on-upgrade=false --allow-daemon-start=false +run_from: "" +trigger: schedule 24h+1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703355168 +full_timestamp: + nanos: 954452000 + seconds: 1703355168 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-24-16-33-16.95.yaml b/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-24-16-33-16.95.yaml new file mode 100644 index 0000000000..89ce845740 --- /dev/null +++ b/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-24-16-33-16.95.yaml @@ -0,0 +1,14 @@ +action_id: trunk-single-player-auto-upgrade +date: 2023-12-24 16:33:16 +run: trunk upgrade cli --single-player-only -n --no-progress --on-upgrade=false --allow-daemon-start=false +run_from: "" +trigger: schedule 24h+1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703435596 +full_timestamp: + nanos: 95488000 + seconds: 1703435596 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-27-11-26-29.825.yaml b/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-27-11-26-29.825.yaml new file mode 100644 index 0000000000..a5c6f84118 --- /dev/null +++ b/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-27-11-26-29.825.yaml @@ -0,0 +1,14 @@ +action_id: trunk-single-player-auto-upgrade +date: 2023-12-27 11:26:29 +run: trunk upgrade cli --single-player-only -n --no-progress --on-upgrade=false --allow-daemon-start=false +run_from: "" +trigger: schedule 24h+1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703676389 +full_timestamp: + nanos: 825844000 + seconds: 1703676389 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-27-11-26-29.872.yaml b/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-27-11-26-29.872.yaml new file mode 100644 index 0000000000..de86d3c8ab --- /dev/null +++ b/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-27-11-26-29.872.yaml @@ -0,0 +1,14 @@ +action_id: trunk-single-player-auto-upgrade +date: 2023-12-27 11:26:29 +run: trunk upgrade cli --single-player-only -n --no-progress --on-upgrade=false --allow-daemon-start=false +run_from: "" +trigger: schedule 24h+1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703676389 +full_timestamp: + nanos: 872463000 + seconds: 1703676389 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-28-11-31-59.630.yaml b/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-28-11-31-59.630.yaml new file mode 100644 index 0000000000..ed22072072 --- /dev/null +++ b/.trunk/actions/trunk-single-player-auto-upgrade/2023-12-28-11-31-59.630.yaml @@ -0,0 +1,14 @@ +action_id: trunk-single-player-auto-upgrade +date: 2023-12-28 11:31:59 +run: trunk upgrade cli --single-player-only -n --no-progress --on-upgrade=false --allow-daemon-start=false +run_from: "" +trigger: schedule 24h+1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703763119 +full_timestamp: + nanos: 630491000 + seconds: 1703763119 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-23-18-12-48.545.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-23-18-12-48.545.yaml new file mode 100644 index 0000000000..f193549a35 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-23-18-12-48.545.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-23 18:12:48 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703355168 +full_timestamp: + nanos: 545632000 + seconds: 1703355168 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-23-18-12-48.867.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-23-18-12-48.867.yaml new file mode 100644 index 0000000000..6254712b93 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-23-18-12-48.867.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-23 18:12:48 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703355168 +full_timestamp: + nanos: 867591000 + seconds: 1703355168 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-23-19-12-49.367.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-23-19-12-49.367.yaml new file mode 100644 index 0000000000..83903389e7 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-23-19-12-49.367.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-23 19:12:49 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703358769 +full_timestamp: + nanos: 367177000 + seconds: 1703358769 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-23-20-12-49.567.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-23-20-12-49.567.yaml new file mode 100644 index 0000000000..930e5dfda7 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-23-20-12-49.567.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-23 20:12:49 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703362369 +full_timestamp: + nanos: 567668000 + seconds: 1703362369 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-24-16-33-16.95.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-24-16-33-16.95.yaml new file mode 100644 index 0000000000..f749a7dd21 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-24-16-33-16.95.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-24 16:33:16 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703435596 +full_timestamp: + nanos: 95488000 + seconds: 1703435596 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-27-11-26-29.813.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-27-11-26-29.813.yaml new file mode 100644 index 0000000000..108d0f9daf --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-27-11-26-29.813.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-27 11:26:29 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703676389 +full_timestamp: + nanos: 813965000 + seconds: 1703676389 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-27-11-26-29.818.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-27-11-26-29.818.yaml new file mode 100644 index 0000000000..02367667d6 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-27-11-26-29.818.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-27 11:26:29 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703676389 +full_timestamp: + nanos: 818323000 + seconds: 1703676389 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-27-12-26-31.766.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-27-12-26-31.766.yaml new file mode 100644 index 0000000000..02b94d2084 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-27-12-26-31.766.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-27 12:26:31 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703679991 +full_timestamp: + nanos: 766476000 + seconds: 1703679991 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-27-14-57-38.106.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-27-14-57-38.106.yaml new file mode 100644 index 0000000000..9a26140f9a --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-27-14-57-38.106.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-27 14:57:38 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703689058 +full_timestamp: + nanos: 106488000 + seconds: 1703689058 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-27-14-57-39.212.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-27-14-57-39.212.yaml new file mode 100644 index 0000000000..bc82c72f42 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-27-14-57-39.212.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-27 14:57:39 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703689059 +full_timestamp: + nanos: 212334000 + seconds: 1703689059 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-27-15-57-39.756.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-27-15-57-39.756.yaml new file mode 100644 index 0000000000..6262e66848 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-27-15-57-39.756.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-27 15:57:39 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703692659 +full_timestamp: + nanos: 756267000 + seconds: 1703692659 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-27-17-03-00.854.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-27-17-03-00.854.yaml new file mode 100644 index 0000000000..6a09f7f2df --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-27-17-03-00.854.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-27 17:03:00 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703696580 +full_timestamp: + nanos: 854320000 + seconds: 1703696580 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-27-18-11-14.60.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-27-18-11-14.60.yaml new file mode 100644 index 0000000000..4f388d820d --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-27-18-11-14.60.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-27 18:11:14 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703700674 +full_timestamp: + nanos: 60364000 + seconds: 1703700674 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-06-31-47.729.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-06-31-47.729.yaml new file mode 100644 index 0000000000..65c36e7452 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-06-31-47.729.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 06:31:47 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703745107 +full_timestamp: + nanos: 729907000 + seconds: 1703745107 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-06-31-47.769.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-06-31-47.769.yaml new file mode 100644 index 0000000000..6fed3d5604 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-06-31-47.769.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 06:31:47 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703745107 +full_timestamp: + nanos: 769345000 + seconds: 1703745107 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-09-30-16.902.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-09-30-16.902.yaml new file mode 100644 index 0000000000..f66320239e --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-09-30-16.902.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 09:30:16 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703755816 +full_timestamp: + nanos: 902848000 + seconds: 1703755816 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-09-30-17.417.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-09-30-17.417.yaml new file mode 100644 index 0000000000..fd33f4ef04 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-09-30-17.417.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 09:30:17 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703755817 +full_timestamp: + nanos: 417653000 + seconds: 1703755817 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-11-31-59.649.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-11-31-59.649.yaml new file mode 100644 index 0000000000..a37db973c5 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-11-31-59.649.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 11:31:59 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703763119 +full_timestamp: + nanos: 649798000 + seconds: 1703763119 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-11-31-59.658.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-11-31-59.658.yaml new file mode 100644 index 0000000000..662921842e --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-11-31-59.658.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 11:31:59 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703763119 +full_timestamp: + nanos: 658507000 + seconds: 1703763119 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-12-31-59.290.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-12-31-59.290.yaml new file mode 100644 index 0000000000..bc20bd647b --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-12-31-59.290.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 12:31:59 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703766719 +full_timestamp: + nanos: 290862000 + seconds: 1703766719 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-13-50-00.684.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-13-50-00.684.yaml new file mode 100644 index 0000000000..70461aecf7 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-13-50-00.684.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 13:50:00 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703771400 +full_timestamp: + nanos: 684915000 + seconds: 1703771400 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-14-56-36.541.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-14-56-36.541.yaml new file mode 100644 index 0000000000..25ea43c585 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-14-56-36.541.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 14:56:36 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703775396 +full_timestamp: + nanos: 541045000 + seconds: 1703775396 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-15-31-59.350.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-15-31-59.350.yaml new file mode 100644 index 0000000000..0f903d0b3f --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-15-31-59.350.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 15:31:59 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703777519 +full_timestamp: + nanos: 350253000 + seconds: 1703777519 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-17-19-19.770.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-17-19-19.770.yaml new file mode 100644 index 0000000000..30ead525d8 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-17-19-19.770.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 17:19:19 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703783959 +full_timestamp: + nanos: 770352000 + seconds: 1703783959 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-17-32-10.208.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-17-32-10.208.yaml new file mode 100644 index 0000000000..db6dc63a03 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-17-32-10.208.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 17:32:10 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703784730 +full_timestamp: + nanos: 208555000 + seconds: 1703784730 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-18-32-20.207.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-18-32-20.207.yaml new file mode 100644 index 0000000000..4781262d55 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-18-32-20.207.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 18:32:20 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703788340 +full_timestamp: + nanos: 207398000 + seconds: 1703788340 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-19-38-19.257.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-19-38-19.257.yaml new file mode 100644 index 0000000000..befa27046f --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-19-38-19.257.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 19:38:19 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703792299 +full_timestamp: + nanos: 257875000 + seconds: 1703792299 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-20-39-49.328.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-20-39-49.328.yaml new file mode 100644 index 0000000000..fea2043204 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-20-39-49.328.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 20:39:49 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703795989 +full_timestamp: + nanos: 328491000 + seconds: 1703795989 +trunk_version: 1.18.0 diff --git a/.trunk/actions/trunk-upgrade-available/2023-12-28-21-31-59.281.yaml b/.trunk/actions/trunk-upgrade-available/2023-12-28-21-31-59.281.yaml new file mode 100644 index 0000000000..71a877bd03 --- /dev/null +++ b/.trunk/actions/trunk-upgrade-available/2023-12-28-21-31-59.281.yaml @@ -0,0 +1,14 @@ +action_id: trunk-upgrade-available +date: 2023-12-28 21:31:59 +run: trunk upgrade --notify --allow-daemon-start=false +run_from: "" +trigger: schedule 1h +result: + exit_code: 1 + out: "\x1b[1m\x1b[31m✖ Please run 'trunk init' to setup trunk in this repository.\x1b[0m\n" + err: "" +timestamp: 1703799119 +full_timestamp: + nanos: 281969000 + seconds: 1703799119 +trunk_version: 1.18.0 diff --git a/.trunk/logs b/.trunk/logs new file mode 120000 index 0000000000..474da17742 --- /dev/null +++ b/.trunk/logs @@ -0,0 +1 @@ +/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/logs \ No newline at end of file diff --git a/.trunk/notifications b/.trunk/notifications new file mode 120000 index 0000000000..d55ccd53d6 --- /dev/null +++ b/.trunk/notifications @@ -0,0 +1 @@ +/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/notifications \ No newline at end of file diff --git a/.trunk/out b/.trunk/out new file mode 120000 index 0000000000..21e36143a4 --- /dev/null +++ b/.trunk/out @@ -0,0 +1 @@ +/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/out \ No newline at end of file diff --git a/.trunk/tools b/.trunk/tools new file mode 120000 index 0000000000..53a442e19e --- /dev/null +++ b/.trunk/tools @@ -0,0 +1 @@ +/Users/allan/.cache/trunk/repos/acb0f50bf20ed1997a4576d8c3565db2/tools \ No newline at end of file diff --git a/kolibri/core/assets/src/exams/utils.js b/kolibri/core/assets/src/exams/utils.js index 31721e2409..a59f1e571f 100644 --- a/kolibri/core/assets/src/exams/utils.js +++ b/kolibri/core/assets/src/exams/utils.js @@ -96,8 +96,8 @@ export function convertV2toV3(questionSources, exam) { const questions = annotateQuestionsWithItem(questionSources); return { section_id: uuidv4(), - section_title: 'Section one', - description: 'Sample description', + section_title: '', + description: '', resource_pool: [], questions, learners_see_fixed_order: exam.learners_see_fixed_order, diff --git a/kolibri/plugins/learn/assets/src/modules/examViewer/handlers.js b/kolibri/plugins/learn/assets/src/modules/examViewer/handlers.js index 49e1100256..9ec709b726 100644 --- a/kolibri/plugins/learn/assets/src/modules/examViewer/handlers.js +++ b/kolibri/plugins/learn/assets/src/modules/examViewer/handlers.js @@ -33,7 +33,6 @@ export function showExam(store, params, alreadyOnQuiz) { let allExerciseIds = []; if (exam.data_version == 3) { allExerciseIds = exam.question_sources.reduce((acc, section) => { - console.log(section); acc = [...acc, ...section.questions.map(q => q.exercise_id)]; return acc; }, []); @@ -99,13 +98,13 @@ export function showExam(store, params, alreadyOnQuiz) { for (const question of allQuestions) { question.missing = !contentNodeMap[question.exercise_id]; } - (exam.question_sources = question_sources), - store.commit('examViewer/SET_STATE', { - contentNodeMap, - exam, - questionNumber, - questions: allQuestions, - }); + exam.question_sources = question_sources; + store.commit('examViewer/SET_STATE', { + contentNodeMap, + exam, + questionNumber, + questions: allQuestions, + }); store.commit('CORE_SET_PAGE_LOADING', false); store.commit('CORE_SET_ERROR', null); } diff --git a/kolibri/plugins/learn/assets/src/views/ExamPage/index.vue b/kolibri/plugins/learn/assets/src/views/ExamPage/index.vue index f21b5f3352..5838a1572c 100644 --- a/kolibri/plugins/learn/assets/src/views/ExamPage/index.vue +++ b/kolibri/plugins/learn/assets/src/views/ExamPage/index.vue @@ -27,36 +27,38 @@ backgroundColor: $themePalette.grey.v_100, }" > - - - + + - {{ section.section_title }} - - - - -
- -
-
-
- -

- {{ section.description }} -

+ + {{ section.section_title }} + + + + +
+ +
+
+ + +

+ {{ section.description }} +

+ + +