This repository has been archived by the owner on Aug 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 88
/
changelog
1252 lines (1022 loc) · 28.5 KB
/
changelog
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
master
3.16.0
- aeosynth
remove version updater
3.15.0
- Mayhem
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.
Add /wsg/ archive redirection.
3.14.1
- aeosynth
disable autogif on /gif/ and /wsg/
3.14.0
- aeosynth
remove image prefetching
3.13.3
- aeosynth
reset updater interval when manually updating
fix regressions
3.13.2
- aeosynth
fix another QT bug
3.13.1
- aeosynth
fix quote threading bug
3.13.0
- aeosynth
Quote Threading toggle - checkbox and 't' keybind
- 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.
Add Country filtering.
3.12.0
- aeosynth
fix post hiding
- Stallmanu
Sage keybind
- Mayhem
Update/fix archive redirection method.
3.11.0
- aeosynth
add /ck/ archive
change /jp/ archive to warosu
- Mayhem
Add /sp/ archive redirection.
Fix QR with the new captcha loading method.
The QR will now work on /f/ too.
Revert changes that broke fetchers in Firefox.
After 1000+ characters, a character counter will appear in the QR.
Add /soc/ archive redirection.
Add /r9k/ archive redirection.
Dead quotes can now be previewed or inlined with compatible archivers.
Opera fixes.
/f/ fixes.
- btmcsweeney
Allow users to specify text for sauce links.
3.10.3
- aeosynth
another captcha tweak
3.10.2
- aeosynth
quick fix for captcha update
3.10.1
- Mayhem
Fix images uploaded as spoilers.
Fix spoiler/code tag keybinds being ignored on post submission.
3.10.0
- aeosynth
fix filter highlighting
delete button
3.9.5
- Mayhem
Update captcha longevity to 5 minutes max, as according to 4chan's change.
3.9.4
- aeosynth
Meta keybind modifier
- Mayhem
Fix spoiler and code tag keybinds regression.
Add /an/ and /toy/ archive redirection.
Add /cgl/, /e/, /mu/ and /w/ archive redirection.
3.9.3
- Mayhem
Add /cgl/, /e/, /mu/ and /w/ archive redirection.
3.9.2
- Mayhem
Add /x/ archive redirection.
3.9.1
- aeosynth
fix threaded quote bugs
3.9.0
- Mayhem
Fix some stub issues.
Add a per filter stub setting.
Fix quote previewing of forward hidden posts.
Fix file size info in case of spoiler image.
- aeosynth
fix recursive filtering w/ threaded quotes
use .threadContainer to help userstylers~
3.8.2
- aeosynth
fix expanding comments
fix qp
3.8.1
- Mayhem
Fix file size formatting always using integers.
3.8.0
- aeosynth
fix thread highlighting of topmost thread
merge mayhem 2.30.5
- Mayhem
Fix syntax highlighting in code of fetched posts on /g/.
Add quick [code] tags keybind (alt+c).
3.7.2
- aeosynth
better fix for /g/ syntax highlighting
3.7.1
- aeosynth
fix /g/ code syntax highlighting on updated posts
fix /sci/ latex on updated posts
merge mayhem 2.30.4
2.30.4
- Mayhem
Add /co/ and /k/ archive redirection.
Fix quote resurrection of existing posts.
3.7.0
- aeosynth
rm whitespace preservation (ty based moot)
3.6.3
- aeosynth
tweak whitespace tabs
3.6.2
- queue
whitespace preservation w/ invisible characters
3.6.1
- aeosynth + queue
fix whitespace preservation w/ visible characters
3.6.0
- aeosynth
add /k/ archive
- queue
re-added whitespace preservation
don't tell moot how it works
3.5.0
- aeosynth
rm whitespace preserveration (fuck you moot)
3.4.0
- queue
QR posting now preserves whitespace/indentation
making code or ASCII art easier
- aeosynth
mv prefetch controls after imgexpand controls, instead of above
anonymize fetched quote previews
make the options dialog stationary, usable on opera mobile
3.3.0
- aeosynth
rm markdown (fuck you moot)
3.2.3
- aeosynth
fix qr
4chan X Settings -> 4chan X
3.2.2
- aeosynth
merge mayhem 2.30.3
- Mayhem
Various bug fixes.
3.2.1
- Anorov
fix some markdown bugs
- aeosynth
fix anonymize
3.2.0
- Anorov
'Markdown': [false, 'Code, italic, bold, italic bold - `, *, **, ***, respectively. _ can be used instead of *']
3.1.0
- Mayhem
Various bug fixes.
Add seconds as a supported Time Formatting specifier.
- aeosynth
'Prefetch': [false, 'Prefetch images.']
fix another thread updating bug
3.0.1
- aeosynth
fix thread updating, possibly
3.0.0
- aeosynth
'Quote Threading': [false, 'Thread convsersations']
'Rollover': [true, 'Index navigation will fallback to page navigation.']
fix thread hiding
allow auto-giffing of /gif/
allow reply highlighting to de-highlight
rm double highlighting of highlighted reply
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
- fix qr image posting
- fix thread hiding
- fix movement
1.27.7
- fix qr persist
- fix updater defaults
1.27.6
- fix 'update now' button
1.27.5
- fix regression - reload captcha after posting
1.27.4
- fix imageHover on chrome
1.27.3
- fix regression - movement
1.27.2
- fix regression - close / refresh qr on chrome
- add updateURL for scriptish
1.27.1
- fix regression - unhide qr when quoting
1.27.0
- x-browser qr error checking (except for batshit insane chrome - see
http://code.google.com/p/chromium/issues/detail?id=20773)
- fix opera movement, again
- bigger options button
- move updater to bottom-right by default
1.26.3
- don't enable reply nav by default
- reset file input after posting (persistent qr)
- remove restore ids
- check for dst
1.26.2
- fix thread watcher position; remember new position
1.26.1
- fix unread count for opera
- fix default thread watcher placement
1.26.0
- image hover
- support/donate
1.25.0
- auto gif
- only preload in threads
- fix autohide
- sage cooldown = 60s
1.24.0
- image preloading
1.23.1
- fix updater notifications
1.23.0
- 'verbose' updater option
- remove /new/, /r9k/ from archivers
- tweak 'fit width' to get rid of horizontal scrollbar, only partially working
1.22.0
- update archives
- tweak updater feedback/ui
1.21.0