Skip to content

Releases: cybercussion/SCOBot

4.0.8

21 May 18:44
Compare
Choose a tag to compare

Within both SCORM 1.2 and SCORM 2004 the specifications left it open to how a Platform would behave in both 'review' and 'browse' modes. Past customers did not want students changing answers in review mode, and commonly in browse mode, you are looking at something not assigned to you. Regardless, SCORM calls it out the following way -

  • Normal - meant this was a tracked attempt. LMS usage is required to put 'cmi.credit' as 'credit' or 'no-credit'.
  • Browse - meant that you were looking at something not assigned to you without the intent of it being recorded. LMS usage is required to put 'cmi.credit' as 'no-credit'.
  • Review - meant that you or a teacher was reviewing a scored attempt without the intent of it being recorded. LMS usage is required to put 'cmi.credit' as 'no-credit'.

So this modification will allow Set Value calls to make it past SCOBot Content API without it stopping the requests as it did in prior versions. It will however, continue to warn you the devleoper in the logs if this occurs.

There are rammifications to this issue outside of the SCO. Had you been disabling user input in 'review' mode for example, certain platforms like Moodle launches your prior suspended attempt in 'review' mode. This would make it hard to continue to answer questions had you built your content out like that.

Also allowing answers to be changed after they are submitted gets dicy. Again, the platform can choose to ignore the SetValue requests but its something to watch out for.

4.0.7

12 May 14:48
Compare
Choose a tag to compare

This update adjusts SCORM 1.2 support. There was a situation where the spec didn't direcly call out how the platform (LMS) was to behave setting modes and or restricting set messages when not in 'normal' mode. SCORM 2004 was more direct with the language on how a LMS should implement these modes and how to behave. So this now has the ability in SCORM 1.2 to keep attempting to set data in other modes than just 'normal'.

4.0.6

27 Feb 21:56
Compare
Choose a tag to compare

This update patches the recent base64 capability of suspend data. The 'glyph bomb' test was failing due to some characters breaking it. encodeURIComponent and decodeURIComponent solved this within SCOBot. The 'glyph bomb' was meant to stress the suspend_data string and it actually did just that.
This issue can crop up with authored content that may have been copy/pasted from Office products or things with control or special characters that don't survive the encoding process.

4.0.5

04 Jan 22:20
Compare
Choose a tag to compare

Updated Dates to 2015.
Modified new features to enable/disable the happyEnding API Method.
Added the ability tor SCOBot to ignore suspend data formatting in cases where something else manages it.
JSLinting cleanup
Modified debug internally to return true when disabled. This allows some other features to continue to succeed with QUnit tests in production.

4.0.4

05 Dec 16:36
Compare
Choose a tag to compare

This release was focused on some status and state cleanup. When and how SCOBot decides to change completion and success status. Blended some SCORM 1.2 scoring tweaks to be more friendly going backwards if you deploy from 2004. Tweaked the ability to opt out of exposing 'happyEnding' if you do your own scoring. Removed several calls from re-occuring after they were cached. This is handy when your on a LMS with a non-cached Runtime API (laggy round trips to the backend)

The question of cheating and security came up a number of times this year. Analysis was done on this a number of times in the last few years, and it was determined nothing could be done from the SCO perspective/angle. Between watermarking the student attempt, or constantly validating cached values against ones sent against the LMS. All of it could be force committed and terminated before the SCO even gets a chance to stop the cheat.
Best advice - know what SCORM features within the student attempt you are using, and write some reports on the LMS to back track suspicious activity. Extra SCORM errors thrown from a students session? Time on task (if tracked independently) maybe can highlight the issue too. Or any other criteria you know your SCO's report that aren't present in content submitted from potential cheatlet/bookmarklet or command line/console entries. Shift the post-analysis to the LMS. Even directly outside the content, students have placed key loggers on teachers computers and manipulated their grades. Where there is a will, there is a way.

4.0.3

01 Dec 16:13
Compare
Choose a tag to compare

Added ability to encode/decode to base64 by default. Please note, if you target IE < 10 the window.atob/btoa functionality is not supported. You'll need to use a 3rd Party library to gain that base support, and there are plenty to choose from. Since these projects exist, adding it to SCOBotUtil did not make sense. Rather, I leave the option to carry this extra code in your project up to you. You can even do it with conditional code, rather than making all browsers deal with the extra code to make it work.
2 new options for SCOBot now exist. 'base64' true or false, and 'useJSONSuspendData' true or false. Both default to true. SCOBot attempts to parse the suspend data, and if you are using a hash or some other format it would result in a error. Wiki will be updated with this information as of 4.0.3.
Modified some of how mastery or scaled passing score is handled. I felt there could be cases where a SCORM 1.2 style '75' could be returned, vs '0.75' for SCORM 2004. Built out a safety check for that just in case. This allows content packaging to include the score the student needs to achieve in order to be 'passed'.

4.0.2

19 Nov 19:27
Compare
Choose a tag to compare

Rolled in updates for SCORM 1.2 like reverting exit 'normal' to '' (blank) and ignoring 'unknown' or 'not attempted' statuses since they are un-supported when rolling SCORM 2004 back to 1.2.
Found a rogue console.log which would of effected older versions of IE 7 and back.
Found a $.triggerEvent left over from jQuery removal.
Made some completion_status tweaks so when SCOBot is closing out a session it doesn't set it to 'incomplete' based on some logic it was making. Also had to build that up a bit since SCORM 1.2 uses cmi.core.lesson_status as success_status and completion_status.

4.0.1

24 Jul 15:18
Compare
Choose a tag to compare

Removed $ which conflicts with JQuery after replacing functionality used by the library. Switched to 'Utl' internal to the API's which means there is noConflict now.

4.0.0

24 Jul 14:14
Compare
Choose a tag to compare

Added SCOBotUtil.js, this was missed in prior release now marked "4.0.0-pre". Since it was rather important I'm re-tagging this to pick it up. Remember if you use jQuery you can continue to use 3.x.x. Major changes in 4.0.0 were mainly the extraction or reliance on jQuery for those who emailed concerns about needing the library/framework.
There will most likely be some refinements to SCOBotUtil.js, and considering swapping the $ var used internally so people using jQuery with 4.0.0 don't have to run it in no-conflict.

3.2.1

20 Jun 01:49
Compare
Choose a tag to compare

Enhanced timestamps with GMT/UTC to convert ISO8601 timestamps back into date objects if that is something valuable to you. Please note, GMT is your +/- location from suburbs of London. UTC is a 24 hour based time which is considered to be the modern way to track time. Previously, this was supported but in a situation where your student is traveling and taking your courseware in one timezone then show up in another. There is also Daylight Savings Time to deal with. This was a common QUnit failing test outside of PDT since tests were hardcoded to check for PDT. Some progress was made to allow it to pass in different timezones now.