Skip to content

refined-github/yolo

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 

yolo

Hotfixes for 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)

broken-features.csv

List of features to disable until the current version is greater than or equal to the "fix date"

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.

select(_`#title span`)

Will be replaced if strings.json contains:

{
  "#title span": "#new_title a"
}

Note: This file uses JSON because character-escaping logic is widely understood and already implemented natively.