https://github.com/refined-github/yolo
Hotfixes for Refined GitHub
https://github.com/refined-github/yolo
Last synced: 9 months ago
JSON representation
Hotfixes for Refined GitHub
- Host: GitHub
- URL: https://github.com/refined-github/yolo
- Owner: refined-github
- Created: 2022-06-27T18:54:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-04T12:17:52.000Z (10 months ago)
- Last Synced: 2025-03-26T16:00:40.378Z (10 months ago)
- Language: CSS
- Homepage: https://github.com/refined-github/refined-github/pull/5763
- Size: 116 KB
- Stars: 32
- Watchers: 6
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# yolo
> Hotfixes for [Refined GitHub](https://github.com/refined-github/refined-github) fetched regularly
In order to address severe issues as quickly as possible, Refined GitHub fetches hotfixes at most every 6 hours (while being used). These are limited to:
- disabling broken features
- adding some CSS
- updating selectors and other strings (currently unused)
The files are loaded under the address: https://refined-github.github.io/yolo/
## broken-features.csv
List of features to disable until _the current version_ is greater than or equal to the "fix date"
```csv
Feature name, Issue, Fix date
show-whitespace, 1234, 22.3.4
```
## style
Per-version CSS files containing style fixes. If an issue hasn't been fixed by the time the next release comes, the related style hotfix must be manually carried over to a new file.
## strings.json
Generally used to replace troublesome selectors, it can replace any string that has been marked as "dynamic", e.g.
```js
select(_`#title span`)
```
Will be replaced if `strings.json` contains:
```json
{
"#title span": "#new_title a"
}
```
> **Note:** This file uses JSON because character-escaping logic is widely understood and already implemented natively.