2019-03-27 10:16:03 +11:00
# DOSee
## Changes and updates
2019-08-28 14:55:45 +10:00
### v1.40
2019-09-13 14:39:04 +10:00
- Made DOSee into a [Progressive Web App ](https://developers.google.com/web/progressive-web-apps/desktop ) that allows installation to a desktop.
2019-09-13 08:59:49 +10:00
- Added basic offline support using [Workbox ](https://workboxjs.org ).
2019-08-28 14:55:45 +10:00
- Rearranged the source files and subdirectories to require a `build` initialisation
2019-09-13 08:59:49 +10:00
- Changed page layout to center-align the canvas and form.
- Added a favicon for bookmarks.
2019-08-28 14:55:45 +10:00
2019-06-08 10:21:49 +10:00
### v1.30
Introduced breaking meta element name changes.
- `dosee:capname` → `dosee:capture:filename`
- `dosee:gamefilepath` → `dosee:zip:path`
- `dosee:gusaudio` → `dosee:audio:gus`
- `dosee:resolution` → `dosee:width:height`
- `dosee:startexe` → `dosee:run:filename`
- `dosee:utils` → `dosee:utilities`
2019-06-09 11:24:33 +10:00
* Help tab is implemented and functional
2019-06-09 16:43:39 +10:00
* Added a browser protocol check and user notification to handle [some cross-origin request issues ](https://github.com/bengarrett/DOSee/issues/1 )
2019-06-09 11:43:48 +10:00
* Fixed glyph display issues on macOS
* Fixed `DOSee.newQueryString()` incorrectly handling URLs that lacked `#` symbols
2019-06-09 13:17:33 +10:00
* Replaced depreciated `onkeydown.which` property usage with `onkeydown.key`
* Navigation keyboard keys will be restored if DOSee has been stopped
2019-06-09 13:23:47 +10:00
* Form labels now do not wrap over multiple lines
2019-06-09 10:33:37 +10:00
2019-06-07 09:18:54 +10:00
### v1.20
2019-06-07 13:28:13 +10:00
- Now requires [npm ](https://www.npmjs.com/get-npm ) or [Docker ](https://www.docker.com/products/docker-desktop ) for installation as the installation scripts have been removed.
2019-06-07 09:18:54 +10:00
- Added `DOSee` prototype object that is accessible from `window.DOSee` . It is now used to access all the custom DOSee function additions.
- Added `DOSee.exit()` that will end the emulation and remove all event listeners created by Emscripten.
- Added `DOSee.canvasResize()` that uses Emscripten to resize the canvas element.
- Added `dosee:spacekeystart` meta element to disable the Space key to start DOSee feature.
- Removed the right-click menu over the canvas blocker that was used by The Emularity, there are a couple of screen capture items instead.
- Isolated the variables and functions in `dosee-init.js` so they do not pollute the `window` global scope.
2019-06-07 18:12:31 +10:00
- Now gracefully handles missing, expected form elements.
2019-06-07 09:18:54 +10:00
2019-04-21 12:18:03 +10:00
### v1.13
- Now will read and use `<meta data="dosee:filename">` element.
2019-03-27 10:16:03 +11:00
### v1.11
- Added a PowerShell install script for Windows (and PowerShell Core) users.
- Replaced `doseeVersion` string with a `version` Map() object.
- Replaced the use of the outdated and broken _screenfull_ library with the [Fullscreen API ](https://developer.mozilla.org/en-US/docs/Web/API/Fullscreen_API ).
2019-03-27 12:14:00 +11:00
- Fixed missing dependencies false-positives.
2019-03-27 10:21:58 +11:00
- _doseeTabs_ links now anchor back to `<header id="doseeTabs">`
2019-03-27 10:16:03 +11:00
### v1.10
- Initial public release.