-
Notifications
You must be signed in to change notification settings - Fork 38
/
changelog-old
1325 lines (1075 loc) · 30 KB
/
changelog-old
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2.39.7
- Mayhem
Update archive redirection for /pol/ and /vg/.
2.39.6
- Mayhem
Fix QR.
2.39.5
- Mayhem
Update archive redirection for even more boards.
2.39.4
- Mayhem
Update archive redirection for many boards.
2.39.3
- Mayhem
Add /fa/ and /s4s/ archive redirection.
2.39.2
- Mayhem
Fix importing settings containing unicode characters.
2.39.1
- Mayhem
Add /gd/, /out/, /vp/ and /vr/ archive redirection.
2.39.0
- Queue
Fix rare bug in Relative Post Dates.
- Mayhem
Add Import/Export settings.
2.38.1
- Mayhem
Fix a little regression introduced in 2.38.0 for webkit browsers.
2.38.0
- Queue
Add Relative Post Dates ("35 seconds ago"), disabled by default.
- Mayhem
Add /int/ archive redirection for threads, and post resurrection.
2.37.6
- Mayhem
Fix image expanding.
2.37.5
- Mayhem
Fix quoting inside inlined backlinks.
2.37.4
- James Campos
Don't expand pdfs
- Mayhem
Add /po/ archive redirection for threads, images and post resurrection.
Fix quoting.
2.37.3
- Mayhem
Fix successful posting causing errors.
Fix 4chan X trying to interact with >>>/board/rules links.
2.37.2
- aeosynth
Beep on new post to completely read thread
- Mayhem
Fix dead quotes.
2.37.1
- noface
Fix Anonymize not working on stubs.
- Mayhem
Fix selection quoting on Opera.
Fix history bug with Persistent QR enabled on Chrome.
Fix posting warning not displaying the reason.
Fix deadquotes showing up in code-tags.
2.37.0
- noface
Add Catalog Links toggle.
Fix Anonymize not working on hovered posts.
- Mayhem
Added catalog support.
Sync thread hiding between index and catalog.
Add /c/ archived thread and image redirection.
2.36.3
- Mayhem
Fix next/previous page keybinds.
2.36.2
- noface
Add tags support on /f/.
- Mayhem
Add /mu/ archived image redirection.
2.36.1
- noface
The Menu now has search links for Archivers.
- Mayhem
Added possibility to display unix timestamps with File Info Formatting.
2.36.0
- Mayhem
Added thread creation QR cooldown.
Fix QR cooldown timer between non-sage and sage posts. You can submit a non-sage post 30 seconds after a sage one.
Fix /q/ QR cooldowns for image and sage posts.
2.35.4
- Mayhem
Removed the obnoxious 4chan Pass ad in captcha errors when posting.
Fix 'Administrator/Moderator/Developer Replies' creating extra backlinks on /q/, again.
2.35.3
- Mayhem
Larger Comment text input by default for 4chan Pass users and on /f/ (no captcha).
2.35.2
- Mayhem
Fix 4chan Pass with QR on Firefox.
2.35.1
- Mayhem
Add support for 4chan Pass.
You can now use 'Enter' in keybind combinations.
2.35.0
- Mayhem
Use 4chan's API to fetch posts for:
- Thread Updater.
- Quote Inlining.
- Quote Previewing.
- Thread Expansion.
- Comment Expansion.
This will make fetching faster, and reduce bandwidth usage.
Add an option to disable 4chan's inline extension. Enabled by default.
Fix compatibility with Scriptish's auto-udpater.
2.34.10
- Mayhem
Fix 4chan X. Blame moot.
2.34.9
- Mayhem
Add /g/, /k/, /w/, /an/, /cgl/, /ck/, /lit/, /toy/ and /x/ archived image redirection.
One-word-captcha now works in the report window.
Fix duplicate file upload error link.
2.34.8
- Mayhem
One-word-captcha: you don't need to input an extra space anymore, the true word will be duplicated.
2.34.7
- Mayhem
Fix one-word-captcha, you'll need to leave a space for the fake word now.
2.34.6
- Mayhem
Fix error caused by change in 4chan's HTML about hidden filename in case of spoiler.
2.34.5
- Mayhem
Fix cooldown on /q/.
Fix thread creation with no file on /q/.
Fix 'Administrator/Moderator/Developer Replies' creating extra backlinks on /q/.
Add /mlp/ archive redirection.
2.34.4
- Mayhem
Add /q/ archive redirection.
2.34.3
- Mayhem
Update /k/ archive redirection.
2.34.2
- Mayhem
Adjust background tabs max update interval down to 5 minutes instead of 10.
Divide the Delete Link in the Menu into a Post and Image deletion links.
The Delete Links in the Menu now have a cooldown.
Add /fit/ archive redirection.
2.34.1
- Mayhem
Add /wsg/ archive redirection.
2.34.0
- Mayhem
New feature: Menu, which
- replaces and includes Report Button and Delete Button.
- add one-click Filter buttons.
- add download links to automatically save the file with its original filename. Chrome-only currently.
- add archive links.
- can integrate features from external userscripts/extensions, see https://github.com/MayhemYDG/4chan-x/wiki/Menu-API
The updater's refresh interval will now increase gradually in inactive threads:
- "Inactive thread" defines a thread that has not received any replies since its last refresh.
- Threads receiving a reply will have its updater interval reset to user's setting.
- The refresh interval will grow up to 90 seconds on visible tabs.
- Unfocused tabs will grow up to 120, 300, then 600 seconds.
- It takes at least 230 seconds to get to 120, at least 350 seconds to get to 300, and at least 650 seconds to get to 600.
- Focusing back to a tab will reset its inactivity state to normal.
- It basically changes nothing, but it salvages 4chan from being slaughtered by a massive amount of concurrent connections.
- see http://www.4chan.org/tmp/extensions.html
The updater's refresh interval is now limited to 5 seconds minimum.
Fix the Settings' window size on small screens, should be useable on Opera Mobile.
2.33.8
- Mayhem
Add Country filtering.
2.33.7
- Mayhem
Add /ck/ archive redirection.
2.33.6
- Mayhem
Update/fix archive redirection method.
2.33.5
- Mayhem
Add /sp/ archive redirection.
2.33.4
- Mayhem
Fix QR with the new captcha loading method.
The QR will now work on /f/ too.
2.33.3
- Mayhem
Revert changes that broke fetchers in Firefox.
2.33.2
- Mayhem
After 1000+ characters, a character counter will appear in the QR.
Add /soc/ archive redirection.
2.33.1
- Mayhem
Add /r9k/ archive redirection.
2.33.0
- btmcsweeney
Allow users to specify text for sauce links.
- Mayhem
Dead quotes can now be previewed or inlined with compatible archivers.
Opera fixes.
/f/ fixes.
2.32.1
- Mayhem
Fix images uploaded as spoilers.
2.32.0
- aeosynth
delete button
- Mayhem
Fix spoiler/code tag keybinds being ignored on post submission.
2.31.6
- Mayhem
Update captcha longevity to 5 minutes max, as according to 4chan's change.
2.31.5
- Mayhem
Fix spoiler and code tag keybinds regression.
2.31.4
- Mayhem
Add /an/ and /toy/ archive redirection.
2.31.3
- Mayhem
Add /cgl/, /e/, /mu/ and /w/ archive redirection.
2.31.2
- Mayhem
Add /x/ archive redirection.
2.31.1
- Mayhem
Fix some stub issues.
2.31.0
- Mayhem
Add a per filter stub setting.
2.30.8
- Mayhem
Fix quote previewing of forward hidden posts.
2.30.7
- aeosynth
Fix expanding comments.
- Mayhem
Fix file size info in case of spoiler image.
2.30.6
- Mayhem
Fix file size formatting always using integers.
2.30.5
- Mayhem
Fix syntax highlighting in code of fetched posts on /g/.
Add quick [code] tags keybind (alt+c).
2.30.4
- Mayhem
Add /co/ and /k/ archive redirection.
Fix quote resurrection of existing posts.
2.30.3
- Mayhem
Various bug fixes.
2.30.2
- Mayhem
Various bug fixes.
Add seconds as a supported Time Formatting specifier.
2.30.1
- Mayhem
Fix 4chan X not affecting fetched posts on Firefox Stable and Opera.
2.30.0
- Mayhem
Support 4chan's new HTML.
Add Spoiler indicator option in File Info Formatting
Remove archive.no-ip.org archive redirections.
2.29.5
- Mayhem
Fix QR filetype checking on /w/.
2.29.4
- Mayhem
Auto-GIF will not run in /gif/.
Fix QR filetype checking.
2.29.3
- Mayhem
Update Quick Reply posting method, this fixes compatibility for uncommon browsers such as
Opera Mobile 12 and Luakit for example.
2.29.2
- Mayhem
Add HTTPS support.
Ban support improvements and fixes.
2.29.1
- Mayhem
Update posting support to use https with sys.4chan.org according to 4chan's latest change. This fixes the 'referer' error.
Update redirection to installgentoo's archives.
2.29.0
- Mayhem
New feature: Quote Resurrection, automatically linkifying dead quotes to archives.
2.28.1
- Mayhem
General performance improvements.
Threads will now be updated instantly after posting through the QR.
Your own posts will not count toward the unread count after posting through the QR.
Performance issues are now lessened with QR thumbnails of high-res pictures.
You can now use Shift+Click on the file input to remove the selected reply's file.
Reply navigation keybinds will now scroll as you navigate.
- noface
Add unique ID to filter.
2.28.0
- ahodesuka
Reply/Thread File Info Formatting:
- Link: %l, %L (Original file names are shown inside threads).
- Size: %B (Bytes), %K (KB), %M (MB), %s (4chan default).
- Resolution/PDF: %r
- Original filename: %n, %N.
- noface
Update imagelimit for /mlp/.
Fix stubs if poster has unique ID.
- Mayhem
You can now filter or highlight admin/mod posts.
New sauce parameter. $4: Current board.
2.27.1
- Mayhem
Fix stubs with the new filter.
Fix mail filtering.
The MD5 will now check for exact string matching, it will not use regular expressions.
2.27.0
- aeosynth / ahodesuka
new option: expand images from current position
- ahodesuka
Add Open Reply in New Tab option for replies made from the main board (not dumping).
Scroll back up (top of anchor - 42px) when unexpanding images.
- Mayhem
The Filter now has per filter settings:
- Filter the OP only along its thread, replies only, or both.
- Per boards, or global.
- Highlight, or hide.
- Highlighted OPs will have their threads put on top of the board page by default.
New filter group: Image dimensions.
Fix posting on Safari.
Fix rare case where the QR would not accept certain image types.
2.26.4
- Mayhem
Add /vg/ archive redirection.
Update ban support with the QR.
Fix history issues on Chrome.
2.26.3
- Mayhem
Ensure fresh captcha on QR load.
There is now a reply counter in the QR dump list.
Fix unXXXifier on pages starting with not XXXed numbers.
Update image limit indicator for /vg/.
2.26.2
- Mayhem
New option to fix XXX'd post numbers.
Fix post number quoting on /b/ and /v/.
Update archive redirection for /v/.
2.26.1
- Mayhem
You can now drag replies in the dump list to reorder them.
Fix sauce links with spoiled thumbnails.
2.26.0
- desuwa
New option: remember the size of the QR on Firefox.
- aeosynth
prevent post form flicker
- Mayhem
Load QR's iframe to sys.4chan.org faster, unless you use Greasemonkey. Thanks desuwa.
Increase Sauce linking possibilites:
Thumbnails, full images, MD5 hashes.
New option: Recursive Filtering: Filter replies of filtered posts.
Unread Favicon is now optional, independent of Unread Count.
Fix some compatibility issues with file drag and drop, notably with QuickDrag extension.
2.25.5
- Mayhem
Hide the normal post form by default, optional.
2.25.4
- Mayhem
Fix text inputs not sent/saved correctly in the QR when pasted for example.
Revert hidding normal post form.
2.25.3
- Mayhem
Fix image spoiler always enabled, bug introduced in 2.25.2.
2.25.2
- Mayhem
Reverted updater's scrolling behavior.
Fix image posting on Firefox along with Unicode characters in the form.
Ghettofix Greasemonkey compatibility with the new QR.
Greasemonkey is still NOT RECOMMENDED, use Scriptish instead.
2.25.1
- Mayhem
Fix missing image filename uploads. Thanks desuwa.
2.25.0
- Mayhem
Fix 4chan X on /f/.
Support for the normal post form has been phased out in favor of the new QR.
New rewritten and redesigned Quick Reply. Highlights include:
- Easy dumping for image, text, or samefagging.
- Toggle auto-posting by trying to submit during the cooldown.
- Multiple file selection.
- Image thumbnails.
- Drag and drop files on the page will add these files to the QR.
- Cache captchas with Shift + Enter.
- Create new threads with the QR, will auto-noko.
- Also includes all the previous features:
- Cooldown and auto-posting.
- Posting error detection and prevention.
- Captcha reloading on backspace.
- Auto Watch on reply/thread creation.
- Text selection to quote.
- Etc...
CAUTION:
Images posted with the new QR on Firefox/Aurora/Nightly will have their filename missing.
see https://github.com/MayhemYDG/4chan-x/issues/137
Greasemonkey is buggy, use Scriptish instead.
2.24.5
- Mayhem
Index Navigation and the See next/previous thread keybinds will not cycle through board pages anymore.
Fix archive redirection in Opera.
Opera support will now be temporarily on hold.
see https://github.com/MayhemYDG/4chan-x/issues/136
2.24.4
- ahodesuka
Scroll back up when unexpanding images.
- e000
Prevent absurd cooldown durations.
- Mayhem
Better image expanding reload, should fool CloudFlare's cache.
- seaweed
Prevent the hover image to be partially masked by the url preview/status bar.
2.24.3
- Mayhem
Set image limit in Thread Stats to 252 for /a/ and /v/, default to 152.
Fix 4chan X in locked threads.
2.24.2
- mayhem
fix options popping up everytime a page loads
2.24.1
- mayhem
fix Open thread in new tab keybind for Safari with Ninjakit
fix Index/Reply Navigation working in both cases when only one is enabled
2.24.0
- mayhem
redirect 404'd pictures to archives when possible
new keybind to open the options: ctrl+o
the unread count will decrease when inlining quotes of unread posts
the report button can open multiple popups again
add omploader to the list of optional flavors (http://ompldr.org/upload?url1=)
update archive redirections, add /lit/ and /u/
fit horizontally for Image Hover
2.23.7
- mayhem
update archive redirections
2.23.6
- mayhem
fix empty sauce or all flavors commented out from breaking 4chan X
2.23.5
- mayhem
increase the thread updater retry timeout limit at each retry
fix selection to quote when selecting started from the end of a line on Firefox
2.23.4
- mayhem
thread updater network optimization
prevent regexp errors with the filter
2.23.3
- mayhem
fix 2.32.2 regression duplicating new posts in rare cases
2.23.2
- mayhem
hide original posts from inlined backlinks - optional
enable autoposting when submitting a captcha while on cooldown
fix caret position when quoting on Opera
2.23.1
- mayhem
fix favicon updating on Opera
fix compatibility with Tampermonkey
2.23.0
- mayhem
multiple unread favicons to chose in the options
quotes are now inserted at the caret position in the QR
quotes also replace the text selection in the QR
open QR focused when using the `Open QR without post number inserted` keybind
fix thread updater for Opera
- aeosynth
update the captcha caching expiration date to 30mins
2.22.2
- mayhem
indicate if the settings require a feature to be enabled
fix obscure and continuous prompts to auto update
2.22.1
- mayhem
change 'Duckroll' for 'Cross-thread'
fix image expanding fitness with an inlined backlink on Firefox
2.22.0
- mayhem
new Indicate Duckrolls feature
put regex.info sauce back - disabled by default
fix for auto image reloading in 404'd threads on Firefox
2.21.4
- mayhem
fix 4chan X version updater
2.21.3
- mayhem
fix locked thread icons with fit width/screen enabled on Firefox
fix fit width on Opera
for userstylers: you can use the rendering engine body class
2.21.2
- mayhem
fix time formatting year in Opera
fix QR keybinds
fix QR posts getting swallowed by sys.4chan.org
2.21.1
- mayhem
fix Opera
2.21.0
- mayhem
initiate 4chan X earlier
performance improvements
regular expressions based filter
remove image preloading
automatically reload expanded pictures on error
handle bans with the thread updater
use unread favicons by ferongr
2.20.3
- mayhem
fix DST for two days of the year
2.20.2
- mayhem
update archive redirection
- aeosynth
hopefully fix qr error / update messages
rm support throd link
2.20.1
- mayhem
fix regression: qr not preventing errors
2.20.0
- mayhem
do not display inlined quotes within the quote preview
fix cross threads quotes in expanded threads or inlined cross quotes
default post styling for quote previews
- aeosynth
script auto updating
2.19.3
- mayhem
quote inlining default styling (by xat)
add up/down/right/left keybinding support
- aeosynth
fixed bug that caused script to fail when time formatting enabled
2.19.2
- mayhem
update archives redirections
- aeosynth
change unread favicons (by xat-)
2.19.1
- mayhem
fix OP indication in expanded comments
fix no.id links within cross thread/board inlined quote
2.19.0
- mayhem
backlink formatting
distinguishable unread favicons on white backgrounds
fix updater refreshing 404'd threads
fix backlinks added into inlined quotes
- aeosynth
fix tab title for 404d threads
2.18.3
- mayhem
fix quote features in expanded comments
fix scrolling onto a quote not showing the preview
2.18.2
- aeosynth:
fix long thread watcher titles
fix normal form errors with an open empty QR
2.18.1
- mayhem:
fix persistent qr not cleaning the file input
- aeosynth:
updater: scroll background tabs
2.18.0
- mayhem:
back to normal versioning
bring back auto posting
don't start the cooldown on thread creation
limit the file upload dialog to the accepted file types (qr)
- aeosynth:
show linebreaks as spaces in title & watcher
auto posting fixes
option to remember qr spoiler state
11.8.15
- aeosynth:
convert qr from hidden iframes to ajax
derp, nevermind. ajaxing reverted, still working on it in dev branch
11.8.11.1
- aeosynth:
fix qr autohiding
11.8.11.0
- aeosynth:
- rm auto post checkbox
if (captcha filled or cached) and (text or file)
auto post after cooldown
- options updated immediately instead of requiring page refresh
11.8.10.1
- aeosynth:
- persistent captchas (expiring after 4 hours, 55 minutes)
- files upload in 'correct' order
- manually submitting will use cached captchas
11.8.10.0
- aeosynth:
- fix captcha caching on blank content
11.8.9.0
- aeosynth:
- change green oval archive to gentoomen
- validate filesize asap
- show correct captcha cache length when creating qr
- 1s delay when autoposting after errors to not look so automated
- cache captcha on blank text / file
11.8.6.0
- mayhem:
- fix post links in expanded threads
- fix 4chan X in closed threads
- aeosynth:
- only auto scroll focused tabs
- quote inlining: only work on unmodified left-click
- select multiple files (one at a time)
- captcha caching
- qr: optional auto hiding
- copy old textarea value
- scroll to bottom of page if post isn't found (thumbnail generation takes
time)
- only scroll focused tabs
- time: %e, %k, %l
- reverted hovering fix
2.17.1
- mayhem:
- fix updater when there is a hash in the url
- aeosynth:
- better hovering fix
2.17.0
- mayhem:
- Make updater's settings dynamic
- Multi-line quoting
- keybinds: z: reset unread count (useful when page is not scrollable)
- fix remember updater's interval settings
- fix wrong keybind input in options
- fix time preview
- fix backlink inlining removing its container
- fix options key/keybinds key variables.
- aeosynth:
- new imgur upload link commented out in the sauces
- link to dup file in the QR error
- fix bug with hovering elements not disappearing
2.16.1
- mayhem:
- fix updater's custom settings
2.16.0
- mayhem:
- Thread Stats performance fix, especially on long threads
- Sauce performance improvement
- fix Quote Inlining for a pattern
- other minor performance improvements and bug fixes
- aeosynth:
- fix an upgrading problem (1.x -> 2.x)
- fix minor bugs with auto-posting
- add updater scrolling
- enable auto-updating by default
- alphabetize option groups
2.15.1
- mayhem:
- prevent upload of too large files
- fix options height for netbooks
- /a/ is now archived on easymodo
2.15.0
- mayhem:
- custom hotkey binding
- image spoiler revealer
- optional auto noko
- add a class for reply stubs
- fix options centering on Opera
- fix append '#watch' only when auto watch is enabled
- fix cooldown with the normal post form
- fix `Select next reply` hotkey behaviour
- aeosynth:
- keep options dialog at constant size
- drop firefox 3.6 support (again...)
- comment out tineye
- trying to post during cooldown will enable auto-post
- fix errors w/ noscript
2.14.0
- mayhem:
- firstrun dialog
- fix backlinking future posts
- fix op non-backlinking
- fix thread expansion on /t/
- fix sage cooldown
- fix extra link area around images
- fix persistent qr
- aeosynth:
- reply navigation
- fix time formatting of xhr posts
- fix %P time formatting
2.13.0
- mayhem:
- fix various bugs
- keybinds: 0: actually refresh page 0
- auto posting
- add google sauce
- arbitrary time formatting
- rewrite options dialog, lightboxing
- various fixes
2.12.0
- revert the status bar blocking changes
- add a 5px padding-bottom to #qp
2.11.4
- fix another quoting bug
2.11.3
- really fix quoting
2.11.2
- fix quoting stuff
2.11.1
- work on firefox < 6.0
2.11.0
mayhem:
- fix quote highlighting
- block status bar when hovering quotes / images (may break image leeching)
2.10.0
mayhem:
space between backlinks (to prevent them from spilling out of the page)
thread stats: fix wrong selector id when image limit reached
fix localized time + inlined quotes
- fix edge hovering (flip to left of mouse @ right screen edge)
- work on closed threads (some stickies)
- op backlinking option
- quote highlighting option
- (maybe) work on fx3
2.9.0
- mayhem:
better placement of inlined backquotes
fix qr in expanded threads
inline quote fixes
fetch name, mail and pass in cookies at each qr opening
highlight quoted post during quote preview
add ' (OP)' to op quotes
am/pm localized time
give visual feedback on which quote has been inlined
fix paypal link
cooldown: alert only when posting from normal post form
fix cooldown
thread stats
auto noko
fix jumping hover dialogs
- forwardlinks
- rewrite image expansion/fitting
- image expansion option: fit height
- keybind: e - toggle thread expansion
- fix bug where x-board links on chrome are unclickable
- fix x-board / x-thread quoting
2.8.1
- tab over captcha
2.8.0
- mayhem:
redesigned options
don't backlink op on index pages
base64 donate button
- fix qr replying to wrong thread
- small tweaks
2.7.0
- mayhem:
add class to reply hider and report buttons
fix anonymizer
- inline quoting
- don't break on >>>/board/ links (links w/o an id)
- remove op backlinking
- fix qr on expanded posts
- image hover: fit height
2.6.0
- mayhem:
start backlinks
fix watcher refresh false positive
- backlinks
- cross-board previews
- fix menu for opera
- slightly bigger qr textarea
2.5.0
- mayhem:
qp: better cross-thread op quoting
qp: fix overflowing preview
qr: prevent email field from popping out
qr: fix cloning values
- keybinds: fix m
2.4.2
- fix nodeInserted (work on new posts)
- qr: remember name
2.4.1
- fix image expansion bug
2.4.0
- mayhem:
auto watch reply
fix report button splitting over two lines
start merging /b/ackwash
- quote previews
- qr remix
2.3.0
- mayhem:
refresh watcher list on un/watch
auto refresh watcher list
update no-ip.org archive
fix auto-watch
- flavor comments
2.2.2
- hopefully fix upgrading issues
2.2.1
- mayhem:
fix op image expansion bug
fix op comment expansion
- fix /b/ackwash multiple links bug
- make cooldown timer optional, disabled by default
2.2.0
- mayhem:
- don't select text when moving dialogs
- fix thread watcher's padding
- remove captcha logos from quick reply
- post in title - show default title when no subject/comment
- update tab title on 404
- chrome - fix favicons
- fix 404 favicon
- fix updater retrying
- set timer to 0 on manual update
- fix threading when op's file is deleted
- fix navigating past hidden threads
- fix updater option - verbose
- only navigate to pages that exist
- use Greasemonkey api (sigh)
- rewrite, reenable cooldown
- better image resize algorithm
2.1.0
- added back the 0 keybind - go to board's front page
2.0.0
- [chrome] qr error notifications
- x-browser auto-watch
- image expansion w/o horizontal scrollbars
- removed reply nav
- floating thread nav
- fix /b/ thread nav
- ignore middle clicks on images
- smarter redirect
- remove all GM_ functions
- [chrome] fix slow scrolling w/ unread post count in titlebar
- keybind: x: hide thread
- qr: remove `auto`
- rewrite / reorganize code
1.27.8