forked from honestbleeps/Reddit-Enhancement-Suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
1679 lines (1409 loc) · 87.7 KB
/
changelog.txt
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
changelog v4.5.4
- Bug Fixes
- Hover pop-ups popping after mousing off the trigger element before the hover delay ends (thanks @erikdesjardins)
- Never-Ending Reddit "loading next page" stays the same height instead of bumping the page around (thanks @erikdesjardins)
- nightmode fixups (thanks @gavin19 and @andytuba)
- Fixed filteReddit filtering every post because of unlessKeyword entries, and cleaned out old "undefined" unlessKeywords (thanks @andytuba)
- fixed enter key submitting comment/post prematurely (thanks @andytuba)
- fixed "hide" posts not hiding posts (thanks @erikdesjardins)
- Other
- Housekeeping (thanks @creesch)
- "submit an issue" wizard text re-ordered to ask user questions upfront and provide specific suggestions for troubleshooting info (thanks @andytuba)
- 4.5.3 changelog and hugs added to repo (thanks @KamranMackey)
---------------------------------------
changelog v4.5.3
- New Features and Enhancements
- "Quick Message" popup from user info popup "message" button or command line "qm" (thanks @erikdesjardins and @andytuba)
- regexp support in some filteReddit options (thanks @andytuba)
- Added an option to show an images original resolution in a tooltip to showImages module (Thanks @erikdesjardins !)
- Username Hider allows different display text / replacements for specific usernames and hide all Account Switcher usernames (thanks @erikdesjardins and @andytuba)
- Command line "sw" (account switcher) autocompletes usernames (thanks @andytuba)
- Option to make "edited time" bolder (thanks /u/erikdesjardins)
- Improved layout of RES settings console search results and share text (thanks /u/erikdesjardins and /u/andytuba)
- Made fade animations a buttery smooth 60fps (Thanks /u/bfred-it)
- escapeNP doesn't affect np.reddit.com links inside posts, comments, wiki, sidebar, or other snudown/markdown regions (thanks /u/andytuba)
- comment tools (formatting, macros) on modqueue pages (thanks /u/erikdesjardins)
- hide username in user info hover popup when using Username Hider (thanks @mc10)
- keyboard shortcut to save post/comment/wiki page: Ctrl+Enter or Cmd+Enter (thanks @jtymes!)
- keyboard shortcuts for links, superscripts, blockquotes in post/comment/wiki (thanks @erikdesjardins)
- option to move to next comment after voting on a comment with keyboard nav (thanks @erikdesjardins )
- keyboard shortcut for saving comments with reddit (thanks @erikdesjardins)
- comment formatting tools on modqueue pages (thanks @erikdesjardins and @andytuba)
- comment formatting tools on banned page (thanks /u/Walter_Bishop_PhD)
- options to not filter on modqueue (don't filter by default) and userpages (filter by default) (thanks @erikdesjardins)
- only show "filteReddit filtered a bunch of notifications" notification if a certain percentage (>= 80%) of posts per page are filtered (thanks @andytuba)
- editing subreddit sidebar shows preview in the sidebar (thanks /u/Walter_Bishop_PhD)
- Lots of nightmode cleanup (thanks @gavin19)
- deviantART text expando preview (thanks @erikdesjardins)
- Streamable.com expando support (thanks @petrosian)
- Multiple links in user tag (space-separated) (thanks @erikdesjardins)
- add "rising" support to dashboard (thanks @honestbleeps)
- Bug fixes
- several efficiency adds behind the scenes (thanks @honestbleeps)
- fix account switcher "must click twice" (thanks @erikdesjardins, @andytuba)
- keep user info hover popup showing when hovering over hidden username (thanks @mc10)
- Imgur expando's download button actually downloads now! (Thanks /u/markekraus!)
- Expando buttons now display after links in messages (Thanks /u/erikdesjardins!)
- Fixed the readme (Thanks /u/erikdesjardins and more)
- Fixed errors showing in hover modules (thanks /u/honestbleeps)
- Fix whitelisting subreddits from NSFW filter (Did not work before) (Thanks /u/erikdesjardins)
- Fix NSFW filter not working on saved comments (Thanks /u/erikdesjardins)
- Fix gifyoutube controls (Thanks /u/markekraus)
- Fix imgur.com/r/... link expandos (thanks /u/CelestialWalrus)
- (Sorta) fixed opening/closing a gifv expando REALLY fast makes it not take height (Thanks /u/diogorolo)
- gifv extra expando button hidden (thanks @Shraymonks)
- fixed "reply" box getting pushed below sidebar (thanks @erikdesjardins )
- Fixed alignment issues on image fallback when videos fail to load (Thanks /u/markekraus)
- Fixed search buttons and turned them off by default (Reddit now has a built in search button) (Thanks /u/mc10!)
- Fixed "open link in new tab" sometimes not making an absolute URL (Thanks /u/markekraus and /u/andytuba)
- fixed "#!settings/module/options with spaces" links not opening directly to option (thanks /u/andytuba)
- fixed big editor opening when pressing enter on post submit page (thanks @mc10 and @Igglyboo)
- use comments page link instead of post link for user tag link when creating user tag (thanks @erikdesjardins)
- show last image on URLs like http://imgur.com/123abc,456bca (thanks @erikdesjardins)
- fix userbar hider overlapping language preference on login page (thanks @erikdesjardins and @andytuba)
- preserve whitespace and embedded HTML at beginning of source (thanks @erikdesjardins)
- nightmode fixes for post report messages (thanks @TravisMarx and @gavin19, honorable mention to @TravisMarx)
- nightmode fixes for report reasons, .gold-accent and "you paid for X server time" info boxes (thanks @TravisMarx and @andytuba)
- optional colored separate bar between top-level comments (thanks @ribolzisalvador and @andytuba)
- new_markdown_style nightmode fixes (thanks @mc10 and @gavin19)
- search subreddit by flair when clicking on flair (thanks @erikdesjardins)
- don't show "Use subreddit style" checkbox on top of reddit cover overlays (thanks @erikdesjardins)
- Housekeeping
- Major command line refactoring (Thanks /u/andytuba)
- Options list subtypes infrastructure, listType: subreddit (thanks /u/andytuba)
- Options description proofreading (thanks /u/erikdesjardins)
- Updated changelog in Git repo (thanks @allthefoxes)
- Optimization!
- Typo fixing!
- General janitoring!
- And a few hugs too!
---------------------------------------
Changelog v4.5.2
- New features
- new expando button image for "html5 gif" (silent videos) / gifv (thanks @erikdesjardins)
- imgur gifv support; load gifv instead of gif (thanks @honestbleeps)
- gifyoutube support (thanks @honestbleeps)
- show gfycat on "view all images" (if silent) (thanks @honestbleeps)
- added /r/random keyboard shortcut (g,alt+y) (thanks @kwakie, @andytuba)
- for large albums, use the prev/next "slideshow" view even if loadAllInAlbum is enabled (thanks @andytuba)
- added "Reddit Classic" orangered/periwinkle comment score coloring (thanks @erikdesjardins)
- Bug fixes
- show save-RES button on comments which are initially collapsed (thanks @andytuba)
- better support for /r/subreddit/comments listings, particularly vote colors (Thanks @honestbleeps)
- better support for reddit.com/comments/12345 comments page (no subreddit) (thanks @honestbleeps)
- better support for reddit's upcoming native functionality for "full comments" and "unread messages" (thanks @honestbleeps)
- only use https imgur if using https reddit (thanks @honestbleeps)
- SSL support for account switcher (thanks @calvinli)
- fixed neverendingreddit pause button across pageloads (thanks @honestbleeps)
- opera12 bugfix to keep usertagger (and other modules) from breaking (thanks @andytuba)
- added a delay to the subreddit shortcut edit/delete button dropdown (thanks @andytuba)
- fixed Never-Ending Reddit not loading p2+ if betteReddit was disabled but showUnreadFavicon was enabled
- always show Comment Navigator when navigating comments, instead of breaking when using keyboard shortcuts when Comment Nav is closed (thanks @andytuba)
- fixed "comment navigator" not jumping to the next comment consistently when pinHeader is enabled (@thanks honestbleeps)
- allow shift-click on subreddit shortcuts (thanks @mc10)
- support subreddit shortcuts like sub1/about/messages+sub2/new (thanks @andytuba)
- fix labeling imgur gifs as .gif to fix convertGifToGfycat and other similar extensions (thanks @honestbleeps)
- tweaked NP message for subreddit subscribers (thanks @andytuba)
- tweaked /r/RESissues+Enhancement/submit text for readability (thanks @mc10 and @andytuba)
- improve post rank number size/truncating (thanks @calvinli @andytuba)
- fixed subreddit stylesheets not re-appearing when using https reddit (thanks @honestbleeps)
- nightmode css cleanup (thanks @erikdesjardins, @gavin19)
- fix centering on "loading image" throbber (thanks /u/andrey_shipilov / @tezro)
- removed opaque backgrounds on nightmode arrows (thanks @erikdesjardins)
- revert "last edited" to relative time after mouse off (thanks @andytuba)
- janitoring (thanks @erikdesjardins, @mc10, @darkstar21)
- ... and as always, various code cleanup and other minor fixes / performance enhancements.
---------------------------------------
changelog v4.5.1
- New features
- Added full HTTPS support now that reddit supports it
- Switched out a lot of RES image resources to use HTTPS now that it's fully supported
- Added HTTPS support for imgur and some other image hosts -- note: not all image hosts support it, you will sometimes see "mixed content" warnings because of this.
- Changed default behavior of post / comment score highlighting (turned off)
- Handy-dandy edit/delete buttons on subreddit shortcuts (thanks @andytuba)
- Added an option to hide formatting tools on comment preview (bold, italic, etc) (thanks @andytuba)
- Updated on/off toggles to be more colorblind friendly (thanks @andytuba)
- Comment navigator now tracks scroll position and updates as you move through the page
- Keyboard navigation commands added for comment navigator (N to toggle, shift-up/down to navigate)
- Updates to redditbooru support (thanks @dxprog)
- Apply filters to multireddits (thanks @Dashed)
- Expandos for 500px.org (thanks @Melraidin)
- Sort tables in posts, comments, sidebar, wiki by clicking on headers (thanks @danny)
- Improve night mode appearance of markdown editor (thanks @githue)
- Added loading spinner for image galleries for a better UX when changing images
- Added compatibility with Tree Style Tabs extension for Firefox (thanks @CyberShadow)
- UX tweaks to RES options search results (thanks @githue)
- Comment Tool options to hide formatting tools (thanks @andytuba)
- Make settings console openable from NP module (thanks @andytuba)
- Changed how autoplay works for MediaCrush videos (thanks @SirCmpwn)
- Removed bitcointip module as the bitcointip service is retired
- Added a tips/tricks box to subreddit style editing page for moderators to help guide them toward help dealing with styling for RES
- Add support for Giphy.com (thanks @alexchung)
- Added a subreddit style toggle box to the toolbar for Firefox - now present in Chrome, Firefox and Opera - no more suffering from pesky moderators who hide it!
- Bug fixes
- MediaCrush and gfycat expandos fixed
- MediaCrush elements no longer open when "view images" is clicked as they may be video
- Fixed navigate by IAmA, broken by a reddit change
- Fixed navigate by popular feature of comment navigator, also broken by a reddit change (thanks @andytuba)
- Fixed a bug where converted gfycat images would overlap content
- Fix comma-separated imgur "album" links (thanks @isstabb)
- Fix tumblr and other remote text posts that contain iframes
- RES command line console fixed in Firefox
- More reliable CSS toggle in toolbar (Chrome and Opera 15+ only)
- Restore original text when mouse leaves timestamps
- Fix occasionally broken whitelisting of subreddit stylesheets in night mode
- Auto-sort vote score user coloration
- Mark gifs as visited with showImages convertGifsToGfycat option enabled (thanks @wT-)
- Fixed a bug where the 'save' button on a dashboard widget got scrolled off screen when creating a very large widget
- fixed a subreddit tagger case sensitivity bug where some subs would not get tagged (thanks @gavin19)
- Fixed a bug where expanded images would cover the user tagger form
- Fixed a bug that caused multiple 'source' buttons to be rendered
- Fixed the background color of the flair selector in night mode
- Fixed reddit's all new report form for night mode (thanks @gavin19)
- Fixed an issue with private messages from ignored users (thanks @andytuba)
- Show all RES options by default (thanks @mc10)
- Fix convertGifToGfycat causing duplicate images when users click twice (during loading) (thanks @SirCmpwn)
- Some CSS fixes for media shown on wiki pages
- Add the ability to upvote/downvote without toggle behavior (shift-A / shift-Z) (thanks @andytuba)
- ... and as always, various code cleanup and other minor fixes / performance enhancements.
-------------------------
changelog v4.5.0.2
- New features
- NOTE: we've changed the default setting for moving images to use ctrl-arrow keys rather than shift and arrow keys to avoid a common conflict for users (thanks in part to @squarific)
- Updated the "No Participation" module based on feedback from moderators of various subs (thanks @andytuba)
- Added an option to turn off the CSS icon in the address bar (allows you to toggle subreddit styles)
- Added a bit more helpful guidance to users reporting bugs
- Various code cleanup and triage (thanks @mc10)
- Bug fixes
- Got rid of protectRESElements option that was causing content to disappear for users with zoom on
- Fixed an issue with conserveMemory option causing page shift when scrolling past large images - if you turned this off, we recommend you re-enable it!
- Fixes to gfycat module
- Stop GIFs from resetting to first frame on mouse scroll
- Fix to giflike (thanks @mtsgrd)
- Add some more foolproof error checking to avoid problems with bad data in filteReddit
- Fix "disable animations" causing problems for some users (thanks @andytuba)
- Fix "sort comments temporaily" (thankns @matheod)
------------------------
changelog v4.5.0.1
- Fixed a couple of issues with night mode coloring
- Fixed a few issues with "use subreddit stylesheet" for some users
- Various other small / emergency bug fixes
--------------------------
changelog v4.5.0
- New features
- Massive memory reduction (optional) for "View Images" users with Never Ending Reddit
- Preloading of albums is now off by default to save memory/bandwidth - you can turn this back on in the inline image viewer preferences if you wish
- Support for several new image and video hosts
- Support for native HTML5 audio and video formats (thanks @sgtfrankieboy)
- Fancy new comment editor buttons for visual goodness
- Add the ability to move images with shift-drag or arrow keys (thanks @gablank)
- Added support for Photobucket (thanks @mpalermo)
- Expand YouTube links in comments (work by @patricksnape, @thybag, improvements by @honestbleeps)
- Added "No Participation" module to help remind redditors to be better citizens when visiting via meta-links (thanks @andytuba)
- Added the "vote enhancement" module that provides a number of options for coloring/highlighting and enhancing vote information (thanks @matheod)
- Added "m" keyboard shortcut to modmail (g, m in "go mode")
- Automatically toggle night mode based on time (thanks @mc10)
- Subreddit sidebar search: add sort/time range dropdowns (thanks @andytuba)
- Console now uses nicer color inputs (thanks @matheod)
- Option to have the reddit logo link to /r/all (thanks @matheod)
- Option to disable CSS3 animations (thanks @andytuba)
- Option to navigate by Gilded with Comment Navigator (thanks @matheod)
- Settings console now has advanced options hidden for a simplified view (thanks @matheod)
- User tag now displayed next to "commenting as" nickname. (thanks @matheod)
- Add a link on user profile to see posts of the user from the subreddit we come from (thanks @matheod)
- Add modmail option to dashboard (thanks @matheod)
- Visually distinguish "source" textarea from "edit" (thanks @matheod)
- Added commandline command for "me" or "me/X" to navigate to your profile quickly (thanks @matheod)
- Added "Context" module that allows easy breakout to full context from deeply linked comments (thanks @matheod)
- Add "show full link flair" option that forces full link flair to be displayed instead of cut off (thanks @matheod)
- Show time until hidden scores will be revealed on hover (thanks @matheod)
- Added option to navigate by highlighted user - hover the username to highlight, then use comment navigator (thanks @matheod)
- Add a Table button to easily create and edit table in commentTools (thanks @matheod)
- Add a search widget on dashboard (thanks @matheod)
- Option to uncheck "send replies [to this submission] to my inbox" (thanks @m-xbutterfly)
- User tag link is now clickable (thanks @matheod)
- Highlight "commenting as" when posting from an alt account (thanks @matheod)
- Console now shows default value of options on hover for easy reference (thanks @matheod)
- ... and loads of other minor fixes here and there ...
-Bug fixes
- Fixed broken subreddit filters
- Allow clearing of keybindings with backspace (thanks @matheod)
- Various fixes to video autoplay related stuff (thanks @thybag, help / updates from @honestbleeps)
- Comment Navigator - changing categories repeatedly breaks navigator (fixed
- Fixed an issue with broken imgur links loading a wrong/different image
- Fixed a problem with mediaBrowseMode behaving poorly when "view images" is clicked
- When expanding multiple video / audio expandos only the first one should now autoplay
- Fixed an issue with audio ads playing in the background via imgur (was only a bug in Safari)
- Fixed videos autoplaying on saved links/comments pages
- Fixed toolbarfix functionality to remove the reddit toolbar from sites that break it
- fix launching user tagger from command line (thanks @andytuba)
- various useful triage (thanks @bronzle)
- Subreddit manager once again shows [+shortcut] button on reddit.com/reddits
- "source" button should not be the first button on post buttons list
- ... and DOZENS of others ...
-------------------------
changelog v4.3.2
- New features
- New "Media Browse Mode" for Keyboard Navigation - if the current expando is open, hitting j or k will close it and open the next one automatically!
- HTML5 videos (MediaCrush, gfycat, fitbamob) can be clicked+dragged to resize
- HTML5 videos now have a prettier UI (thanks @MediaCrush, @joey5755 / gfycat)
- Option to always allow subreddit styles in night mode (thanks @andytuba)
- Giflike inline image support (thanks @mtsgrd)
- Imgflip inline image support (thanks @dylanwenzlau)
- - Inline YouTube (in comments too!), Vimeo, Soundbutt, and MemeDad support (thanks @thybag)
- Improved colored username support (thanks @andytuba)
- Show view count on YouTube links (off by default) (thanks @markekraus)
- Change "sort by" in comments just for the current page (thanks @andytuba)
-Bug fixes
- Fixes several bugs in MediaCrush support (thanks @MediaCrush)
- Don't run RES on mobile/compact pages (thanks @andytuba)
- Fix instragram support in night mode (thanks @gavin19)
- Fixes to Reddit over https (thanks @andrewachen)
- Pause MediaCrush expandos when closed (thanks @MediaCrush)
- Fix Twitter expandos (thanks @honestbleeps)
- Fix subreddit bar failing to load for shadowbanned users (thanks @sircmpwn)
- Improved HTML rendering for showImages (thanks @largenocream)
- Loads of other, smaller fixes...
- Other
- Of interest to developers - RES has been split into many files for better organization, etc. More workflow improvements are on the way!
------------------------
changelog v4.3.1.2
-New features
- Added "go mode" to avoid accidental navigation to pages (this can be turned off if you don't care for it) - now, hit "g" than "f", for example, to go to the front page.
-Bug fixes
- Fix to positioning of source button (thanks @mc10)
- Fix to width of rank column (thanks @gavin19)
- Fix for appearance of organic ad spots in night mode
- Fixed an issue where your own top level comments weren't counted in the new comment counter
- Fix to inline imageviewer feature that auto expands images in selfText - albums now work!
- Various fixes to night mode (thanks @gavin19)
- Various housekeeping and code cleanup (thanks @mc10)
- Fix to allowNSFW feature (thanks @andytuba)
- Fix to NSFW CSS if module is disabled (thanks @andytuba)
- Fixed mediacru.sh support to obey maxWidth/maxHeight settings
- Fix for account switcher in Chrome incognito
- Fix for Chrome storing image viewer images in history even in incognito
- Fix to drag/sort on /r/Dashboard (thanks @sircmpwn)
- mediacru.sh support updates (thanks @sircmpwn)
- Fix to clickFocus restricting to a smaller area
- Fix to night mode on traffic pages (thanks @gavin19)
----------------
changelog v4.3.1.1
-Bug fixes
- Fixed an issue affecting many buttons (view source, flair selection, etc)
- Fixed an issue with keyboard navigation parent buttons (thanks @gavin19)
- Fixed an issue with j key navigation on dashboard
- Fixed character counter on big editor
- For now, snoonet module is disabled - stay tuned for an exciting new development soon, though!
-------------------
changelog v4.3.1
- New features
- Updated Twitter expando functionality to use Chrome's optional permissions because of a change on twitter's end from http to https
- Added the ability to individually enable/disable image hosts (thanks @dxprog)
- Added the option to choose between imgur album types (RES-style, or reddit's new built in one)
- Added soundbutt to the list of domains that toolbarFix fixes
- Removed Vine from the inline image viewer since Reddit added native support
- Clicking labels now selects radio buttons (thanks @ericsubach)
- Update to Tinycon to support Retina (thanks @ggPeti)
- ESC key will now dismiss tips dialogs (thanks @mc10)
- Updates to Never Ending Reddit to better handle future changes on reddit's side (thanks @andytuba)
- Added subredditInfo hover to subreddit links in comments (thanks @gavin19)
- Added an option to ditch the "view images" tab but still use image viewer (thanks @theinternetftw)
- Fixed voting on parent hovers (thanks @mc10)
-Bug fixes
- Fixes for Safari 6.1 and 7 (thanks @phriedrich)
- Fixed an issue with passwords with certain characters failing (thanks @aidanhs)
- Fixed fadeDelay in subredditInfo popup (thanks, @gavin19)
- Fixed inability to unsave already-saved links (thanks, @mc10)
- Fixed an issue where clicking expanded images wouldn't open them in a new tab
- Fixed an issue where certain dashboard widgets would fail to hide the scrim after loading
- Fix to imgur.com/gallery links bringing up the wrong image due to a change at imgur
- Lots of code cleanup / organization (HUGE thanks to @mc10 for a ton of housekeeping, also thanks as always to @andytuba, @gavin19)
- Fix for subreddit info popup not working on Never Ending Reddit pages (thanks @andytuba)
- Fix steam domain detection (thanks @themichaellai)
- Fixed an issue with CSS causing problems on other sites in Firefox (NetVibes, Yahoo Mail)
- Fixed a few issues with mediacru.sh support (thanks @sircmpwn)
- Updated chrome API use (replaced deprecated calls) (thanks @chizu)
- Fixed a bug that could stop RES from functioning with the userbar collapsed
- All sorts of other small, misc bug fixes, thanks to any/all of the above who contributed...
---------------------------
changelog v4.3.0.4
-New features
- added subscribe button to subreddit hover popup
- added m.imgur.com support
-Bug fixes
- various fixes for Firefox 23+
- fixed a flickr expando issue
- CSS fix for hidden userbar toggle
- fixed an issue with hyphens in usernames
- fixed an issue with +shortcut button not appearing at /subreddits (formerly /reddits)
- various code cleanup / housekeeping (thanks @mc10!)
- Yet more Opera 12.* specific tweaks to regain functionality in Opera
------------------------------
changelog v4.3.0.3
-New features
- added keyboard shortcuts to increase/decrease image size (- and =, with shift for fine-tuning)
- added support for gfycat.com
- enhancements and fixes to macro dropdown - thanks @andytuba
- hovering over a gallery expando now shows the # of images - thanks @andytuba
- subreddit hovers now also work in comment links
- added new username coloring features to the userHighlight module - thanks @andytuba
- updated bitcointip module - thanks @skeeto
- now showing +shortcut button on reddit.com/reddits - thanks @mc10
- background overlay for big editor for easier reading - thanks @Zren
- better preloading of images from galleries (reduces memory usage) - thanks @MikeRogers0
- various additional night mode fixes/tweaks - thanks @gavin19
-Bug fixes
- fix for broken colorBlindFriendly option
- fix for broken "night mode whitelist" - clicking "use subreddit style" while using night mode on subs that aren't yet specified as night mode friendly should now stick upon page reloads
- various additional night mode CSS tweaks/improvements
- additional CSS fix for expando buttons on comments page
- various Opera 12.* specific tweaks to regain functionality in Opera
- settings console search also returns module names - thanks @andytuba
- dropbox links no longer tagged as users - thanks @gavin19
- various username hider fixes - thanks @gavin19
- never ending reddit was reloading if you refreshed even if you were only on the first page (#page=1)
- a great deal of housekeeping niceties thanks to @mc10
-------------------------------
changelog v4.3.0.1
-Bug fixes
- fix for broken colorBlindFriendly option
- fix for broken "night mode whitelist" - clicking "use subreddit style" while using night mode on subs that aren't yet specified as night mode friendly should now stick upon page reloads
- various additional night mode CSS tweaks/improvements
- additional CSS fix for expando buttons on comments page
--------------------------------
changelog v4.3.0
-New features
- support for 3 new image hosts: mediacru.sh, memegen.com and makeameme.org
- support for vine videos
- "Show parent comment" shows the whole thread (as much as is visible)
- Moderators can add custom "filter by title" tabs to subreddit
- Moderators can specify whether or not their subreddit is "night mode compatible" (RES will disable the stylesheet in subreddits that don't do this)
- Keyboard console support for navigating to multi-reddits
- Keyboard console support for toggling nsfw filter
- Keyboard console command to go to user profile
- Opera 15+ support (with caveats: there are known issues with Account Switcher, adding image links to history, etc - Opera hasn't entirely replicated Chrome here so some things will need work)
- Post filter notification
- Option to disable image captions on expando
- Comment tools, big editor, live preview broken into separate modules
- Custom keyboard shortcuts for macros when editing post/comments
- /u/username autocompletion when editing post/comments
- Custom categories for macros with separate dropdown menus
- Notifications sometimes include links into settings
- Never-Ending Reddit more user-friendly when paused
- User info popup's "give gold" link opens "gild comment" box on comment page
- Superscript comment editor tool improved
- Re-order rows in settings console tables with drag-and-drop
- "My subreddits" dropdown loads quicker (and caches properly)
- clicking outside of the "My Subreddits" dropdown now closes it
- Pink user tag color
-Bug fixes
- Significant updates to Never Ending Reddit's feature that attempts you to scroll you back where you were upon return from the back button. It's never going to be perfect (for crazy technical reasons), but in my testing thus far, this has worked pretty well.
- Settings console subreddit autocomplete dropdown visible again
- account switcher works for passwords containing +
- "limit search to subreddit" works in multi-reddits
- hiding posts works in multi-subreddits
- image gallery expandos don't show the wrong caption if the image lacks a caption
- tumblr expando in comments toggles properly instead of opening several times
- flickr expando improvements
- Comment "show source" loading/toggling fixed
- Excessive saves to localStorage less excessive (how often, not how much)
- Night mode CSS tidied up, added multireddit support
- "hide child comments" works when "gift gold" is open
- Keyboard navigation's 'go to link' only observes real links
- Username hider doesn't break mod pages
- Private mode respected in Firefox
- Upvote/downvote count fixed on /r/subreddit/comments page
- fixed broken memegen support, livememe support
- fix for broken selftext toggles
- fix for wrong-sized tumblr and other buttons on certain pages
- all sorts of other small bugs/quirks
------------------------------------------------
changelog v4.2.0.1
-Bug fixes
- Temporarily removed bitcointip module due to server load issues
- Tweaks to night mode
- added back option for users to have border on keyhighlight
- Fixed a bug where "use subreddit stylesheet" option showed up in places it shouldn't.
------------------------------------------------
changelog v4.2.0
-New features
- Added a "donate to RES" button to the settings dropdown since many people have told me they didn't know there was a donation page!
- Settings console now has a search feature (contributed by @andytuba with improvements from @honestbleeps)
- Big editor for all of your long comment typing needs! @gamefreak
- Changed drag to resize behavior to avoid having to hide the sidebar - @honestbleeps
- bitcointip integration - makes it even easier to send and view bitcointips! (contributed by @skeeto with updates and improvements by @honestbleeps and @andytuba)
- Highlight user feature - allows you to highlight a user's username within a comment thread for easier spotting (contributed by @andytuba)
- Account-switcher is case-insensitive - @allanlw
- Imgur album gallery preloads images - @MikeRogers0
- YouTube expando improved - @darlose
- twitter expando improved - @honestbleeps
- Subreddit/user hover info has been made prettier and less obtrusive to clicking the username - @honestbleeps
- Username hider improved - thanks @alphanovember
- Added /myrandom link to subreddit manager (if you have it) - @andytuba
- Safari - open new tabs location improved - @robitor
- Distinguished save-RES button from reddit save comment button - @honestbleeps
- Image zoom doesn't hide side bar - @honestbleeps
- Whitelist subreddits from NSFW filter: show those subreddits' posts everywhere or only when browsing that subreddit - @andytuba, assist from @honestbleeps and @patricksnape
- Sort subreddit shortcuts - @patricksnape, assist from @honestbleeps
- Keyboard navigation "currently highlighted thing" gussied up - @honestbleeps (**Subreddit moderators** should update your CSS.)
- Private browsing enhancements for Chrome and Firefox
- Lots of new tips added to RES Tips and Tricks module - @andytuba
- Added cloudpix support to inline image viewer - @honestbleeps
- Various code cleanup and efficiency improvements - @honestbleeps
- Bug fixes
- Improved appearance of keyboard navigation along with a classname change to un-break it on many subreddits - @honestbleeps
- Fix for auto-population of link when tagging a user for the first time - sometimse the link wasn't getting populated
- Firefox 20/21 support - @patricksnape
- Fixed account switcher which broke when Reddit made a change - @patricksnape
- Fixed "link" comment editor tool - @gamefreak
- "Watch for new elements" fixes - @honestbleeps
- Night mode, notifications, other CSS/JavaScript cleanup - thanks @gavin19 (**Subreddit moderators** should update your CSS.)
- "Use subreddit style" checkbox should stay under popup and zoomed images - @andytuba and @honestbleeps
- Icon source more stable
- Expandos appear inside self-text expando - @honestbleeps
- Flickr expando improved to work on some additional types of pages - @dshafik
- Expandos don't disappear after showing/hiding comment - @honestbleeps
- Imgur album title punctuation fixed - @gamefreak
- Show parent comment when hovering over "parent" button fixed
- Show correct date on user/subreddit age
- reddit "save" comment button fixed - @infused
- Private messages "source" button gets correct message - @honestbleeps
- Clicking envelope when not orangered takes you to all messages again
- Fixed a bug where angle brackets made text disappear when using subreddit tagger - @honestbleeps
- For unread messages, fixed up favicon badge and fixed Safari's title turning to (#)
- Lots of other tiny little stuff here and there...
changelog 4.1.5 (RIP 4.1.4)
- New features
- Added "me" to comment navigator - allows scrolling through your own posts on a thread
- RANDNSFW link is now hidden if NSFW filter is on
- Added a few new keyboard navigation features thanks to urhereimnot's contribution
- Added a new option to allow orangered envelope to link to full inbox, instead of /unread (this is off by default), thanks to andytuba's contribution
- Bug fixes
- Security fixes to prevent XSS attacks via external sources
- Fixed a few issues with Opera - Now REQUIRES Opera 12.10
- Fixed "Show parent on hover", which broke when Reddit's HTML changed
- Fixed doubling up of "full comments" on friends/comments page (also due to reddit change)
- Fixed an issue that broke twitter expandos for some users
- Fixed a bug in Safari related to XHR (thanks Gamefreak)
- Updated snuownd per Gamefreak
- Bugfixes for nested instances of "load more comments" not getting applied RES functions
- Updates for compatibility with newer versions of Firefox Addon SDK (aka jetpack)
- Broke out plugins into separate files
- Using Mutationobserver instead of DOMNodeInserted when available for greater efficiency
- Cleanup of keyboard index storage for greater efficiency
- Some various cleanup to CSS
changelog v.4.1.3
- New features
- Added the ability to filter by flair (e.g. "gore")
- Several significant efficiency improvements that should make RES run a bit smoother.
- Improvements to keyboard navigation annotations to not be triggered by commonly used reddit "emoticons" (thanks DanGe42)
- A few style tweaks for the header (thanks Marcel)
- Added length display of text/title fields on submission page (thanks gamefreak)
- Added picshd.com support to image viewer.
- Added comma separated album functionality to imgur posts (thanks gamefreak)
- Added the ability for subreddits to trigger RES to enable gonewild filter functionality (thanks gamefreak)
- Improvements to image zooming functionality (thanks gamefreak)
- A number of other minor/less visible inline image viewer tweaks/improvements (thanks gamefreak)
- Added the ability to edit dashboard widgets.
- Zero padding gallery numbers in image galleries to avoid cursor jump.
- Improvements to the behavior of auto sidebar hiding when images are expanded.
- Added "delete" button to table-type options in the console (e.g. accounts in account switcher, etc)
- Updates to imgur support (less reliance on API calls)
- Drastically improved flickr support
- Added "ignored" column to user tagger table in Dashboard
- A large collection of CSS tweaks/fixes. (thanks gavin19)
- Added keyboard navigation option to automatically move to the next post after voting (thanks gavin19)
- Added keyboard navigation shortcut for inbox in a new tab (thanks gavin19)
- Added keyboard navigation shortcut for opening subreddit in a new tab (thanks cpettit)
- Added support for scrolling subreddit dropdown (thanks spencerhakim)
- Semantic improvements to HTML for certain RES elements for friendlier subreddit styling.
- Bug fixes
- Fixed a bug with imgur links not working when they had parameters after them (e.g. ?1)
- A number of new preventative measures to combat subreddits trying to hide the "use subreddit stylesheet" button (thanks Krenair)
- Fixed new comment count overwriting localizations on comments page
- Fixed a bug with Never Ending Reddit not returning users to the correct page after viewing a Reddit comments page.
- Fixed comment hide persistor in Firefox
- Fix for the pesky userbar toggle button size getting messed up in certain situations when closed.
- fix for username links with non-username text bringing up wrong info
- Fixed a bug caused by hiding many links in rapid succession.
- Fixes to live comment preview in Snuownd parser (thanks gamefreak)
- Fixed an issue with the sidebar being hidden on user pages even if expanded images weren't large.
- Fixed an issue with saving filteReddit options for users moving from old versions of RES
- Fixed saved comments tab not showing up on locale subdomains
- Fixed username hider on edited comments (thanks thelinmichael)
- Fixed user tagger on hyphenated usernames.
- Fixed a bug with < and > buttons scrolling too far sometimes.
- Update to remove new message count when needed. (thanks dxprog)
- Fix for comment preview not showing up on edit.
- Fixed an issue with subreddit hover popup on never ending reddit pages
changelog v4.1.2
- New features
- DeviantART and Tumblr links are no longer rewritten - thanks to a huge improvement made in Firefox, this will only detrimentally affect Opera and Safari users who use "view all images" on pages full of these links...
- Made some huge performance improvements in Opera
- Direct link to users' links and comments now exist in the user hover tooltip
- Bug fixes
- Reddit made a breaking change (moving location of saved links) making it impossible for RES users to get to saved comments - this is fixed.
- Fixed a bug causing the "About RES" panel not to display in the console for Firefox users
- Fixed an issue with live comment preview and attachment to the top level comment even when not necessary
- Fixed a few CSS issues (thanks gavin19!)
- Uppers and downers now work on user profile pages past page #1
- Some new updates to back button detection for Never Ending Reddit should make it a little smoother
- A number of other minor/misc tweaks and bugfixes
changelog v4.1.1
- New features
- Account Switcher menu can now be switched between snoo (the alien) and a dropdown
- Account Switcher menu has returned to being "click to open", rather than rollover
- User tag list on the Dashboard now has pagination (thanks, gamefreak!)
- Macros now support multiple lines of text
- Macro rollover has been changed to click to activate to avoid accidentally opening
- Users now have the ability to disable +dashboard and +shortcut links in the sidebar
- Subscription checking is now more efficient thanks to a different Reddit API call
- Image galleries now have a unique icon so you can tell it's a gallery
- Support for picsarus.com image host
- Added the option for users to disable the display of image captions in gallery view
- Firefox should get a great performance improvement on long pages of never ending reddit with many images open thanks to a new method of tracking history
- Bug fixes
- A small subset of people were experiencing RES-ERROR localStorage messages in Firefox, this should be fixed
- A different small subset of Chrome users were having RES periodically not run due to a crash in the SnuOwnd live comment preview markdown parser
- A number of tweaks were made to how inline image viewer works to restore it to proper functionality
- Fixed an issue with +dashboard / +shortcut buttons in the modqueue
- Fixed an issue related to deleting subreddit shortcuts
- CSS tweaks to night mode (spoiler tags and a few other fixes, thanks, gavin19!)
- Some additional bug fixes were made for Never Ending Reddit's back button detection (specifically to avoid thinking you've come from the back button on a page refresh
- Fixed a bug preventing users from subscribing to threads that had 0 comments
- Fixed another bug relating to subreddit highlighting on the user bar
- Fix for some edge cases of displaying negative values for new user account ages
- Fix for accidental triggering of never ending reddit via keyboard
- A number of other minor bugfixes too tiny and/or numerous to list...
changelog v4.1.0
- New features
- Major overhaul to how and when certain parts of RES are executed - this MAY result in getting rid of the dreaded "flash of unstyled content", such as a white page before night mode kicks in, in some cases!
- Major additions to Dashboard - you can now see all of your user tags and subscribed threads there!
- Some efficiency improvements specific to the Firefox addon including: compiling with a new addon SDK version (biggest help), some adjustments to how storage is handled between tabs, and eliminating some code
- Added "fadespeed" option to user hover tooltip so that users can have it fade in/out faster (or just instantly appear)
- User tagger now stores a link to the link or comment you tagged a user from by default
- Added easy-access NSFW filter toggle to dropdown menu
- Now calling more HTTPS stuff to play nicer with addons like HTTPS Everywhere (note: compatibility is still not guaranteed)
- Added a way to dynamically grab known/popular bug reports and feature requests for when people try to submit to Enhancement or RESIssues
- Updated account switcher dropdown for easier access and more UI consistency
- Completely overhauled how uppers/downers are displayed - no more JSON request required, which means it's faster!
- Added "turbo selftext" option - which will make selftext expandos much faster after the first one you load on any given page
- Adjusted clickable area for selecting comments
- Added new subreddit tooltip - allows easy filtering, adding of shortcuts/dashboard widgets, etc
- New module: Comment hide persistor - keeps track of collapsed comments and re-collapses them when you return to a thread - thanks, umbrae!
- Added the ability to add custom macro buttons to comment preview toolbar
- Added "source" button to inbox
- Adding a class of .res to the BODY tag to help moderators better style their subreddits with RES in mind
- Added app=res to all calls to Reddit, so that the Reddit admins can more easily measure RES's impact
- Major overhaul of inline image viewer - improved code, support for a few more sites (deviantart, imgclean, picsarus, i.qkme), etc.
- Added a checkbox to more easily disable RES tips and tricks
- User tagger hover tip now works on /u/username links
- Added a few more URL patterns that will break out of the Reddit Toolbar since they don't play nice together
- Updated Never Ending Reddit with "friendlier" error messaging and easier reloading
- No longer auto-linking subreddits since Reddit now does it itself
- "Hard ignore" option in User Tagger now collapses sub comments as well
- Disabling "spam button" module by default due to misuse/abuse. If enabled, button now reads "rts" so as not to conflict with newly added "spam" button from Reddit itself
- Made a few code changes that should allow older versions of Firefox (via Greasemonkey) to still work. I cannot actively support this with a lot of time, but a cursory test shows you should be able to run RES with FF3.6+GM now.
- Added code to allow saving of comments even if they're from deleted users.
- Added user tagger / hover tip to flair page for moderators
- Added the ability for filteReddit and dashboard subreddits to be added even if they don't exist in Reddit's autocomplete feature
- Improved multireddit experience - now including +dashboard and +shortcut buttons for each reddit in the sidebar, etc
- Added "reddiquette" button to comment preview toolbar
- Updates to Reddit API calls to maintain current location protocol (should mean less problems browsing https with pay.reddit.com)
- Added a few more optional links to the subreddit manager: DASHBOARD, FRONT, MODQUEUE, RANDNSFW (thanks to Signe for the last 2)
- Added "View Images" tab to Dashboard
- Added the ability to control how long thread subscriptions last (in New Comments Count module)
- Added "refresh all" function to dashboard
- Added the ability to show current username in account switcher (thanks, Lugghawk!)
- Bug Fixes
- Reddit changed how karma is displayed, which made Comment Karma not show in RES - this is now fixed.
- Reddit added a new feature, "link flair" which broke RES - this is now fixed.
- Fixed an issue for international users having problems with keyboard shortcuts blocking their extended charsets
- Added a MAJOR fix for Safari users who often used the back button resulting in a broken RES
- Fixed a bug where "view images" broke when encountering a post from an ignored user
- Preventing autoload of next page when using keyboard navigation and autoload is disabled
- Several misc bug fixes with user tagger
- Fix for misaligned userbar icon when not using navTop
- Minor bug fix with commandline sorting
- Fixed an issue that messed up the flair dropdown for moderators in some cases
- More tweaks to Night Mode to style some elements that were overlooked
- Inline image viewer history recording should work in Firefox now that it's compiled with a newer Addon SDK version
- Changed structure of settings dropdown menu to not block other buttons from being clicked
- Adjusted how Firefox handles tab communication of settings changes - should be much more efficient
- Never Ending Reddit no longer relies on rewriting the current URL to keep track of what page you're on, which should alleviate ctrl-f borking out in Chrome, and also a caching/history problem in Chrome
- Added a fix for "username hider" module not applying to multiple pages of Never Ending Reddit
- Documentation updates for a few unclear keyboard commands
- Some fixes for user hover tooltip placement / alignment
- Fixed a couple of minor issues with Never Ending Reddit
- Complete overhaul of live comment preview using new markdown engine, etc.
- Major fixes to filteReddit - exclusive/inclusive filters often broke other filters
- Added option to disable keyboard shortcuts for bold/italic/strikethrough in comment preview module
- Added user hover tip to moderator box in sidebar
- Bugfix to highlighting of current subreddit in subreddit manager
- Updated new comment count cache to be cleared more often
- Further "protection" of subreddit style checkbox
- Timezone fix for date function
- Added support for cmd-click of subreddit shortcuts on OSX
- Fixed duplicate "full comments" link on Never Ending Reddit on user pages
- A lot of other minor bug fixes, UI fixes, etc - really, I've lost track....
changelog v4.0.3
- added an additional fix for hiding the sidebar on resizing images which were sometimes still getting cut off.
- keyboard navigation now handles "continue this thread" links (thanks gavin19)
- current subreddit now highlighted on shortcut bar (thanks gavin19)
- adjusted positioning of user detail dialog for better alignment of username
- added new commandline command, srstyle, to toggle subreddit styles on and off.
- added close button to never ending reddit modal in case it fails and you get stuck there.
- fixed an problem with Safari and cross-domain versus non-cross-domain XHR causing Never Ending Reddit issues
- checking for existing video times before adding new ones...
- added unread message count to never ending reddit floating mail indicator
- added deviantart and memecrunch to inline image viewer (thanks gamefreak)
- fixed account switcher in chrome incognito mode
- fixed ability to save links in multireddits (thanks calaveraDeluxe)
- added "home" link option in subreddit manager (thanks s-quark)
- CPU usage fix for some users whose scrolling + updating localStorage was causing locks (thanks gamefreak)
- added flickr.com and github.com to toolbarFix since they also seem to break the reddit toolbar
- Firefox XPI only: compiled using patched FF addon-sdk to get around a bug in their SDK that caused problems for the user tagger when a color was selected
- set drag/resized images to only even pixel widths to get around a Firefox bug...
- fixed a bug with uppers and downers when logged out caused by a change in reddit's html
- fixed an issue where subscription notifications were obscured when pinHeader option is on
- other fixes related to pinHeader (thanks s-quark)
- fixed another mail icon sprite issue
- more night mode fixes (thanks gavin19)
- added option to pin subreddit bar and userbar together (thanks gavin19)
- removed linkifysubreddits option, as Reddit now does this natively
- fixed a XSS threat, huge thanks to I_know_HTML for reporting it anonymously and with detail
changelog v4.0.2
- Fixed a last minute issue with reddit's new sprite system (changed 11/14/11) messing up mail display for showUnreadCount
- A number of fixes to night mode (thanks gavin19!)
- Changed how Never Ending Reddit remembers pages to get around a Chrome bug that was breaking scrolling and find in page searches that caused scrolls...
- Fixed inconsistency on subreddit tagger, especially on subsequent never ending reddit pages
- Fixed an opera specific bug in subreddit tagger that was placing "undefined" in link titles
- Chrome no longer marks images as visited when in incognito mode
- Fixed 404 issues with dashboard on mail and user widgets when default sort was changed.
- Now allowing sorting by new/hot/top/controversial on user widgets
- Fixed an issue with account switcher menu alignment when pinUserBar was set
- Fixed a bug with dashboard on sorting widgets that had multireddits causing data to be corrupted...
- Fixed a bug with how live preview renders h3 tags (i.e. ###text)
- Fixed a bug with commandline console and sorting from users' profile pages
- Fixed a bug with trying to get info of a logged in user when not logged in (reddit's HTML change broke this)
- Fixed an issue where toggled userbars in some browsers grew by a couple of pixels (thanks gavin19)
- Fixed a filteReddit bug with domains / keyword radio buttons
- Fixed a bug where never ending reddit wasn't updating the right mail icon if you had the full header pinned
changelog v4.0.1
- Adjusted how the console scrim is handled to avoid a slow scrolling bug in Opera
- Hiding links with keyboard nav with onHideMoveDown wasn't moving down.. fixed.
- Removed unnecessary defaultMark option from past instances of user tagger
- Fixed a bug disallowing slashes in subreddit shortcuts on subreddit manager
- Fixed some night mode issues
- Fixed user tagger bug when a color was set (only affected Firefox)
- Addressed safari/osx issue where keyboard shortcuts were being blocked
- Fixed an issue where users who have youtube blocked (corporate firewall, etc) were getting error messages.
- Opera: fixed a bug where account switcher wouldn't work in Opera - but that means not using https...
- Opera: fixed a bug with save options button sometimes not appearing properly
- Fixed a bug where filteReddit on specific subreddits was case sensitive and shouldn't have been
- Got rid of the (u) indicator since all browsers now auto update.
- Fixed a bug where never ending reddit page numbers weren't recording right with certain options set
- Fixed navTop=off incompatibility with pin options
changelog: v3.4
New features:
- General
- Reddit Enhancement Suite is now officially (and properly) released under the GPL
- All modules now work via HTTPS
- Added some additional debug tools to make it easier for users to fix corrupt JSON data
- Account Switcher
- Added detection of Reddit API rate limiting so you know if you've been submitting the wrong password too many times / too fast
- betteReddit
- New features for subreddit bar! Try creating a group (i.e. pics+videos+entertainment), just try it :)
- You can now delete subreddit shortcuts by giving them a blank name
- New option (defaults to on) to show unread orangered count!
- Inline Image Viewer
- Scanning on link pages is now much faster (it is kept slower on comments pages intentionally since so much is hitting your CPU)
- Added a "View Images" tab to search result pages
- New Comment Count
- New comment counts are now displayed on the comment page (just the count, you still need Reddit Gold for highlighting)
- Comment Navigator
- Added two new search methods:
- Friend - click through posts from friends
- Popular - clicks through posts in order of popularity (point total)
Bug fixes:
- General (well, actually Keyboard Navigation but that's non-obvious)
- Fixed an issue where links with mixed-case protocols (i.e. "Http") were not opening properly in some browsers
- betteReddit
- Fixed an issue where giving a subreddit shortcuts a blank name made it impossible to grab/edit
- Fixed an issue where adding/removing subreddit shortcuts sometimes wasn't working properly
- Middle clicking subreddit shortcuts is fixed - they open in new tabs
- User Tagger
- Fixed an issue tallying votes on archived comments (that can no longer be voted on)
- Fixed a bug with odd display on blank user pages
- Live Comment Preview
- Fixed a longstanding bug where immediately editing a posted comment didn't have a preview
- Username Hider
- If enabled, "Commenting as" in the Live Comment Preview won't be displayed
- Inline Image Viewer
- Fixed an issue where some Flickr images would show at the wrong aspect ratio before resizing
changelog: v3.3
New features:
- General
- Added error handling to avoid killing RES when your JSON data gets corrupted, you will now get a dialog allowing you to clear it out
- **NOTE**: If you see such an error popup, you may want to copy/paste this data and save it in a text file! The error popup does say this :-)
- betteReddit
- Subreddit Manager has been updated, now supports "display names" (to rename shortcuts)
- Double click a subreddit shortcut to edit it!
- Added links to the "Edit subscriptions" page
- You can now enable/disable any of the ALL / RANDOM / FRIENDS / MOD links
- Uppers and Downers Enhanced
- updated timestamp hover to only take effect on the actual time rather than the whole row
- updated timestamp hover setting to affect both comments and posts
- Live Comment Preview
- Added "commenting as" with your logged in username to avoid confusion for frequent account switchers
- Added option to turn "commenting as" text off for those who don't want to see it
Bug fixes:
- betteReddit
- Fixed some CSS annoyances on the subreddit bar for some users
- Fixed an issue where shortcuts with a period in them wouldn't save properly
- Inline Image Viewer
- Fixed a bug where preview thumbnails sometimes got stuck open
changelog: v3.2
New features:
- betteReddit
- updated style of < + > buttons as people didn't like the icons
- added "Edit subscriptions" link to the add subreddit form (click the +)
- Inline Image Viewer
- Added an option to disable the Thumbnail Preview as it's not useful for people without Compressed Link Display on
- Uppers and Downers Enhanced
- Added an option to disable the tooltip for time/date a comment was written
- User Tagger
- Added a new option to have +/-[number] instead of [vw] for vote weight
Bug fixes:
- General
- Fixed an issue where Firefox wasn't storing float values properly (which caused RES to always think there was an update)
- Fixed RES from breaking on "multi reddits"
- Fixed an issue with "private" reddits screwing up RES because there were no "reply" links in comments
- betteReddit
- fixed a minor bug where some people had to click the + button twice to add a subreddit
changelog: v3.1
Bug fixes:
- Style Tweaks
- Fixed a bug that caused RES to break for users who had never ignored a subreddit stylesheet.
changelog: v3.0
New features:
- General
- Completely overhauled how settings are stored, separately for each browser, to hopefully avoid losing settings when private data is cleared.
- Chrome, Opera, Safari: Each using their respective extension background page to store settings
- Firefox: Using Greasemonkey's GM_setValue / GM_getValue to store settings
- Some other miscellaneous architecture changes that should speed things up a bit
- Added some code to adjust the order of "save", "source" links etc so they're more consistent with each other
- Comment Navigator **NEW MODULE!
- When browsing long comment threads, the Comment Navigator provides an easy way to scan for posts by Submitted, Moderator or Admin
- betteReddit
- Added "Manage Subreddits" option, which provides an editable subreddit bar
- NOTE: All browsers except Opera will support drag/drop editing of this bar. Opera unfortunately has chosen not to support drag events yet.
- Keyboard Navigation
- Added a new commandline command: user [username] goes to that user's profile page
- Added "s" shortcut to save a link when the link (on a comments page) is selected
- "s" shortcut will save/unsave comments when a comment is selected
- Updated style of "selected" keyboard nav item so it doesn't "take space" and jiggle text around... (except in Opera due to a CSS quirk, sorry Opera users)
- Inline Image Viewer
- Added thumbnail preview (when hovering over an image expander button)
- Updated placement of images on link list pages to avoid "jumping" on expansion and/or drag and drop
- Save Comments
- Changed how saved comments are stored in prep for RES Pro sync
- Style Tweaks
- replaced commentBoxHover with a new name so people can still turn it on if they like it, but now it defaults to off - it's a CPU hog.
- Uppers and Downers Enhanced
- Added date/time of submissions on rollover (thanks to semanticist for the contribution!)
- Module now also runs on a user's "liked" tab
Bug fixes:
- General
- fixed [check for update] button in RES console in Opera
- Show Parent
- Parent links on "load more comments" now work properly.
- Style Tweaks
- Fixed some overlooked items on Dark theme (thanks FillInTheBlank)
- SingleClick Opener
- Fixed an issue opening javascript:void(0) tabs on middle click
- Inline image viewer
- Fixed to work properly on user pages again
changelog: v2.7
New features:
- Keyboard Navigation
- Added the keyNav commandline! Hit "." on any page to bring it up.
- typing r/[subreddit] sends you to that subreddit
- typing a number on a selected comment clicks that link
- typing a number on a link list page clicks the link with that ranking number
- typing tag bob would tag the currently highlighted user as "bob"
- typing m takes you to your messages
- typing mm takes you to your moderator messages
- typing sw funkypants would switch you to the user "funkypants" in Account Switcher
- typing ls toggles the lightSwitch function
- Account Switcher
- Added "keep me logged in" option to account switcher (default is false for security reasons)
- Never Ending Reddit
- Finally added error detection! Now when NER fails to get an actual page from its load, you'll know! You can then click to try again.
- Also added the ability to click the NER box just in case the content isn't large enough to allow you to scroll (which is what normally triggers it)
- Inline Image Viewer
- Updated HTML/CSS so that inline image links do not take up the whole "row"
- Spam Button
- Added the spam button to comment pages and user profile pages