Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes and features, including 4Chan XT support #60

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
45 changes: 45 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,48 @@
## v5.10.0
*2024-09-22*

**SystemPatch**
- Fix source code to be grunt buildable again.
- 4Chan XT support: Header icon, fxtwitter embeds, and XT specific adjustments.
- Add clip setting for mascots.
- Add 'Untether QR from Sidebar' option. Allows for floating QR identical to X (Properly fixes [#11](https://github.com/KevinParnell/OneeChan/issues/11)).
- Adjust styling for QR so some elements don't end up slightly smaller than minimal size when Force QR is disabled
- Recolored replies now use the theme's reply opacity (Fixes [#5](https://github.com/KevinParnell/OneeChan/issues/5)) and will not overwrite the highlight of linked replies.
- X and Oneechan settings will no longer use the theme's reply opacity (Fixes [#6](https://github.com/KevinParnell/OneeChan/issues/6)).
- Set Quick Reinitilize to <kbd>CTRL</kbd> + <kbd>F2</kbd>
- Add z-index to /f/'s Ruffle embed
- Add a background to the table cells in the expired threads archive and /f/. Improves readability if using a BG image.
- Wordbreak added to the expired threads archive's excerpt column. Prevents the table from pushing under the sidebar in some cases.
- Add support for styling the scrollbar. Full CSS and color only Webkit support. Uses the selected theme's 'Header Text' and 'Body Background' colors for the main scrollbar, and 'Text' and 'Input Background' colors for text boxes. For Webkit, it will also force width size and hide scrollbar buttons, so add '!important' to your customCSS code where necessary.
- Cleanup and tweaks to CSS relating to SS-like Sidebar.
- Fixed a couple Font Family names on the new fonts, and added additional fonts to round out the selection. Each font will need to be installed locally before they can be used.
- Full list of added fonts (Sans/Serif/Mono) with download links: Verdana, [DejaVu](https://dejavu-fonts.github.io), [Roboto](https://fonts.google.com/?query=Roboto), [Noto](https://fonts.google.com/noto/fonts), [PT](https://fonts.google.com/?query=ParaType), [Liberation](https://github.com/liberationfonts/liberation-fonts/releases), [Source](https://fonts.google.com/?query=Source), and [Libre/Dosis](https://fonts.google.com/?query=Impallari+Type)
- Replaced older fonts with modern variants: [Open Sans](https://fonts.google.com/specimen/Open+Sans) (replacing Droid Sans) and [SF Pro](https://developer.apple.com/fonts/) (replacing Lucida Grande)
- Update URLs in script.
- Hide [Advertise on 4Chan] banner.
- Added theme: Prisma Magica

**breaktrace**
- Removed more mascots button (Pull Request [#57](https://github.com/KevinParnell/OneeChan/pull/57)).

### v5.9.3
*2021-01-18*

-New waifu (Makima)

### v5.9.2
*2020-01-28*

- Fix issue with Stalenhag theme [#30](https://github.com/KevinParnell/OneeChan/issues/30).
- Added theme: Blue Phallus

### v5.9.1
*2020-01-21*

- Added more font options (fonts must be installed on your system)
- All available mascots have been ported over to a new host (onee.moe)
- A new user theme has been added (Stalenhag)

### v5.8.9
*2019-07-24*

Expand Down
4 changes: 2 additions & 2 deletions builds/OneeChan.meta.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

193 changes: 168 additions & 25 deletions builds/OneeChan.user.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions builds/crx/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "OneeChan",
"version": "5.8.9",
"version": "5.10.0",
"manifest_version": 2,
"description": "Customizable rice and themes for 4chan X.",
"icons": {
Expand All @@ -10,12 +10,12 @@
},
"content_scripts": [{
"js": ["script.js"],
"matches": ["*://boards.4chan.org/*"],
"matches": ["*://boards.4chan.org/*","*://boards.4channel.org/*"],
"all_frames": true,
"run_at": "document_start"
}],
"homepage_url": "https://github.com/nebukazar/OneeChan/",
"update_url": "https://nebukazar.github.io/OneeChan/builds/updates.xml",
"homepage_url": "https://github.com/KevinParnell/OneeChan/",
"update_url": "https://github.com/KevinParnell/OneeChan/raw/master/builds/updates.xml",
"minimum_chrome_version": "32",
"permissions": [
"storage",
Expand Down
636 changes: 511 additions & 125 deletions builds/crx/script.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/updates.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
<app appid='cnbankbnhjiakpmcjbecinckfbceeacf'>
<updatecheck codebase='https://KevinParnell.github.io/OneeChan/builds/OneeChan.crx' version='5.6.2' prodversionmin='31' />
<updatecheck codebase='https://github.com/KevinParnell/OneeChan/raw/master/builds/OneeChan.crx' version='5.10.0' prodversionmin='31' />
</app>
</gupdate>
Loading