Skip to content

Commit

Permalink
XT 2.19.0
Browse files Browse the repository at this point in the history
- Removed the css for the header for widths above 1300px, because it was preventing long custom navigation lists from
  wrapping. [#120](#120) I don't know what the purpose was of the different
  style, the commit where that was added isn't really descriptive: c396db4? So let me
  know if I broke something.
- Limit subject input to 100 characters. [#128](#128)
- Added ws and nsw classes for work safe and not work safe boards.
  [#129](#129)
- Using shift click to hide a post no longer selects half the page.
  [#131](#131)
- The file select dialog for the settings import will only show json files.
  • Loading branch information
TuxedoTako committed Dec 22, 2024
1 parent 14fe6fc commit f8b3ffd
Show file tree
Hide file tree
Showing 16 changed files with 324 additions and 453 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,18 @@
4chan XT uses a different user script namespace than 4chan X, so to migrate you need to export settings from 4chan X,
and import them in XT.

### Not released yet

### 2.19.0 (2024-12-22)

- Removed the css for the header for widths above 1300px, because it was preventing long custom navigation lists from
wrapping. [#120](https://github.com/TuxedoTako/4chan-xt/issues/120) I don't know what the purpose was of the different
style, the commit where that was added isn't really descriptive: c396db49b9d8fe1becad2fd9c8b29e88ead7b587? So let me
know if I broke something.
- Limit subject input to 100 characters. [#128](https://github.com/TuxedoTako/4chan-xt/issues/128)
- Added ws and nsw classes for work safe and not work safe boards.
[#129](https://github.com/TuxedoTako/4chan-xt/issues/129)
- Using shift click to hide a post no longer selects half the page.
[#131](https://github.com/TuxedoTako/4chan-xt/issues/131)
- The file select dialog for the settings import will only show json files.
- Upstream came back, so I had to port those new features.
- Fix for unwanted sorting of catalog under certain settings. [ccd0#3212](https://github.com/ccd0/4chan-x/issues/3212),
7dfba22042d01fde1e762af68e92109d80d0164d
Expand Down
31 changes: 1 addition & 30 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ New features include:
- Hiding all posts from a poster ID in a thread
- A manifest v3 version for chromium browsers dropping support for v2
- A button to un-randomize a filename in the quick reply
- Showing the reason a post was filtered in the stub

The 4chan XT project is a migration of 4chan X from coffeescript to TypeScript/JavaScript. It is named XT both as a
continuation of eXTended, and a T for TypeScript. The goals of this project is to first get a working bundle from js/ts
Expand Down Expand Up @@ -70,36 +71,6 @@ The simplest build is as easy as `npm install` `npm run build`, but there are so
- @violentmonkey/types was chosen over @types/greasemonkey because @types/greasemonkey only declares the GM object,
and not GM\_ functions

## commits since this was forked

<details>
<summary>Click to expand</summary>

- [x] 944b04210c119aedf8da1a8bcabaca9b80312118 Update archive list.
- [x] 59ee8c57792d0f82491756a077e25f506fd62994 Desuarchive removes /gif/
- [x] 402679e33a06dfbe0dc39ceba5c24fed761b6a19 desuarchive removes /wsg/ files
- [x] 86071184aa39b3585f06c1a4e2921c411ad8cf10 archived.moe adds /pw/ search, tokyochronos has hosting issues
- [x] 8a6392b1cf721ddfae6d8f4e3ec2566f15755370 add Eientei
- [x] 451a06f54b878ce433b0775858affefc71927fc7 alice.al domain change
- [x] 2a8bf2adb0737ce7bb1e21f6b959e4c6e1de1bc7 Disable Javascript Whitelist on captcha iframe. #3292
- [x] e9c1529da7844a42a1b40458c2c77b77e23ca537 Make QR post more like original form post. #3330
- [x] d16062a8fac5c092c34310c7704ac3980494b6ef Merge remote-tracking branch '4chenz/master'
- [x] 8795b1c56dbdfb52a32ddb3ea80b549f0048dc7b Add Google Lens image search url
- [x] f3f03f5e79fb5f26c0fd4406b2ab6796851ea471 Replace Google image search link with Google Lens.
- [x] c68a8afbdf30e3cbb35f0834b364f20600151adf Switch Google image search back to old version, thanks to https://boards.4channel.org/g/thread/91737566#p91789527
- [x] aef984da1a6af4d0003b51e7f03bce252ac71dff Remove empty space from ads if they don't load. https://kissu.moe/b/res/7155#11052
- [x] 19268975ea2d49a753624315b0928f27496aac02 Update Randomize Filename to match current 4chan format. https://boards.4channel.org/g/thread/91737566#p91784238
- [x] 2a47dfd8ba724b17f5bc5f9214bea8ce8b469398 Catch errors due to "Restricted" selection. #2905
- [x] 27957c25af5d182adc38f1e67a098ab338631ccd Release 4chan X v1.14.22.2.
- [x] eb25d6e797a1673fd7cddb257fce04055383ec9b Update chrome-webstore-upload.
- [x] 14e67e9a958633e37b4e4a6293cfa3a921c1eab0 Release 4chan X v1.14.22.3.
- [x] 7295b21b73eb13ec53fdc61767ada341c2e13144 Avoid breaking sauce settings of people with links to original Google Images and Google Lens, provided they didn't already update to v1.14.22.3.
- [x] 71873cd7b22a565c2a41fa24f63f7504152683eb Recognize JPEG files with .jfif extensions as images for purposes of Image Hover etc.; also recognize .avif and .jxl files as images.
- [x] ea2462ecc47327c6f0c31348d95fd2b1b6447cb3 Release 4chan X v1.14.22.4.
- [x] e31438f9a9907078508912fd4c4d44bf21ac773c Fix youtube /live embeds

</details>

---

# Original readme:
Expand Down
2 changes: 1 addition & 1 deletion builds/4chan-XT.meta.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan XT
// @version 2.18.0
// @version 2.19.0
// @minGMVer 1.14
// @minFFVer 74
// @namespace 4chan-XT
Expand Down
2 changes: 1 addition & 1 deletion builds/4chan-XT.min.meta.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan XT
// @version 2.18.0
// @version 2.19.0
// @minGMVer 1.14
// @minFFVer 74
// @namespace 4chan-XT
Expand Down
96 changes: 48 additions & 48 deletions builds/4chan-XT.min.user.js

Large diffs are not rendered by default.

Loading

0 comments on commit f8b3ffd

Please sign in to comment.