Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rslifka/fate_of_all_fools
Enhancements to the information presented in DIM for Destiny 2
https://github.com/rslifka/fate_of_all_fools
destiny destiny2 destinythegame dim greasemonkey greasemonkey-script greasemonkey-userscript tampermonkey tampermonkey-userscript
Last synced: about 1 month ago
JSON representation
Enhancements to the information presented in DIM for Destiny 2
- Host: GitHub
- URL: https://github.com/rslifka/fate_of_all_fools
- Owner: rslifka
- License: mit
- Created: 2017-10-09T20:31:20.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-21T10:33:46.000Z (about 2 months ago)
- Last Synced: 2024-10-01T01:44:04.733Z (about 1 month ago)
- Topics: destiny, destiny2, destinythegame, dim, greasemonkey, greasemonkey-script, greasemonkey-userscript, tampermonkey, tampermonkey-userscript
- Language: HTML
- Homepage:
- Size: 7.97 MB
- Stars: 24
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[![CircleCI](https://circleci.com/gh/rslifka/fate_of_all_fools.svg?style=shield)](https://circleci.com/gh/rslifka/fate_of_all_fools)
# May, 2024 Update
For the past few years, I've been focusing my energy on [Vault Zero](https://www.vaultzero.app/), an iPadOS/Apple Silicon app for Destiny 2. Fate hasn't gotten much love in that time, though it still continues to function, and I use it daily. This month, I'll be making a modernization pass to the tech, getting the build back online, etc.
# Overview
`Fate of All Fools` (or "Fate" for short) is a suite of visual modifications and data overlays on top of [Destiny Item Manager](https://www.destinyitemmanager.com/) (DIM) for the Destiny video game. It works by modifying the presentation of DIM while it's running, directly in the browser.
`Fate` builds on DIM in two ways:
1. **Visual Modification**: It modifies the presentation of **existing** information, that DIM provides.
1. **Information Overlays**: It displays **new** information, that you provide.**Fate is compatible with the online version of DIM, not the DIM browser extension, mobile app, etc.**
# Quickstart
1. Install the [Tampermonkey](https://tampermonkey.net/) browser extension.
1. Install Fate from [OpenUserJS](https://openuserjs.org/scripts/rslifka/FateOfAllFools_-_DIM_Customization).
1. Reload DIM.# Development Setup
Fate is a node-based project using ES6 as TypeScript wasn't yet a thing when I kicked this off in 2017. Much of the complexity of project configuration has been done to accelerate development; primarily the local modify => refresh => test loop.Upon saving any file, everything is built, tested and released (locally).
1. Install [Tampermonkey](https://chrome.google.com/webstore/detail/Tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en) from the Chrome Web Store. You cannot use the Safari version of TamperMonkey for development because Safari will not allow you to configure the next setting.
1. In Chrome's "Extension" settings, choose "Tampermonkey" and enable the option to `Allow access to file URLs`. This allows you to refresh your browser to pick up changes during development, using the file URLs present in the next steps.
1. Create a new script in Tampermonkey and paste the contents of [fateOfAllFools.dev.user.js](https://github.com/rslifka/fate_of_all_fools/blob/master/fateOfAllFools.dev.user.js).
1. Modify the `@require` and `@resource` directives to be accurate based on your filesystem.
1. `npm install`
1. (TODO - MISSING STEPS FOR PATHING)
1. `brunch watch` Monitors filesystem for changes to JS and CSS, building as appropriate.
1. `karma start` Monitors assets for changes, running tests in response.