Commit Graph

12967 Commits

Author SHA1 Message Date
Régis Hanol 69f95df297 FEATURE: recently used emoji tab
⬆️ update lodash to V.3.0.1
2015-02-02 21:54:15 +01:00
Robin Ward 06279b5c6a Add a new event for when a post is confirmed as spam 2015-02-02 15:52:21 -05:00
Régis Hanol 0a252d7785 FIX: quote whote post should insert at cursor position 2015-02-02 19:08:28 +01:00
Robin Ward f15b0d205f FIX: The "too similar" check happened when trying to make a post a wiki 2015-02-02 12:44:56 -05:00
Neil Lalonde b56999e984 show last 30 days on about page 2015-02-02 12:27:49 -05:00
Robin Ward 8ba72b3a84 Merge pull request #3161 from techAPJ/patch-2
FIX: uncategorized category was not loading updates in edit mode
2015-02-02 11:29:28 -05:00
Arpit Jalan 88306cc112 FIX: uncategorized category was not loading updates in edit mode 2015-02-02 21:50:29 +05:30
Régis Hanol b9ff4a5e81 UX: fix 'revision details' styling in revision history window 2015-02-02 12:13:37 +01:00
Jeff Atwood 5605238fb7 Merge pull request #3160 from techAPJ/update-docs
update meta url
2015-02-02 02:21:20 -08:00
Arpit Jalan 5bfa6e5ab9 update meta url 2015-02-02 15:44:38 +05:30
Jeff Atwood 9d4ee9553d add some breathing room to quoted categories 2015-02-02 02:08:06 -08:00
Régis Hanol e2a65a6605 Merge pull request #3159 from riking/patch-6
FIX: Add Google Analytics code to crawler view
2015-02-02 11:07:47 +01:00
Jeff Atwood 737f81b3a9 remove default bgcolor from code highlight 2015-02-02 01:53:24 -08:00
Jeff Atwood e45b3c15c3 Revert "FIX: auto orientation code causing grey images to appear blackish"
This reverts commit f680374820.
2015-02-02 01:27:52 -08:00
riking c6e27399b3 FIX: Add Google Analytics code to crawler view 2015-02-02 00:49:58 -08:00
Sam 8304c306a4 Merge pull request #3158 from techAPJ/patch-2
FIX: Not allow TL4 user to set staff color
2015-02-02 16:27:39 +11:00
Arpit Jalan a29970275a FIX: Not allow TL4 user to set staff color 2015-02-02 10:38:42 +05:30
Jeff Atwood be16bbdd89 Merge pull request #3157 from mcwumbly/install-docs
Update install docs:
2015-02-01 17:14:37 -08:00
David McClure e6d9f02f0a Update install docs:
1. add deprecation warning for Heroku install guide
2. remove incomplete and outdated cloud66 guide
3. remove unused links to unofficial guides from main install doc
2015-02-01 15:28:40 -08:00
Sam 05a56b25a9 FIX: setting custom avatar would not work a lot of the time
Due to internal structure we were often caching "redirect" images.
2015-01-31 23:42:50 +11:00
Sam f680374820 FIX: auto orientation code causing grey images to appear blackish 2015-01-31 18:05:50 +11:00
Sam f4609fd6ae selection refactor caused wrench to show up in topic list for non-admins 2015-01-31 17:16:08 +11:00
Sam 8b95511816 correct bad styling in user->pref->categories 2015-01-31 17:04:53 +11:00
Jeff Atwood 79daa4b410 Merge pull request #3156 from techAPJ/patch-2
FIX: Toggling staff color on a post doesn’t change button text
2015-02-01 12:28:58 -08:00
Arpit Jalan 3e7cc18276 FIX: Toggling staff color on a post doesn’t get applied 2015-02-02 01:11:35 +05:30
Régis Hanol c502e9fc47 Merge pull request #3153 from gschlager/import_scripts
FIX: The order of includes in the base importer was wrong.
2015-01-31 17:44:45 +01:00
Gerhard Schlager 827daf7f0f FIX: The order of includes in the base importer was wrong.
https://meta.discourse.org/t/importer-for-simple-machines-2-forums/17656/58
2015-01-31 15:42:39 +01:00
Jeff Atwood 3948ea89eb Update INSTALL.md 2015-01-30 16:39:44 -08:00
Jeff Atwood 674e917243 Update INSTALL.md 2015-01-30 16:34:09 -08:00
Jeff Atwood cabd519f14 add a little breathing room for topic title tags 2015-01-30 15:45:04 -08:00
Robin Ward d7b7ec9e0a FIX: Wiki editing was broken due to extra topic update 2015-01-30 18:02:11 -05:00
Robin Ward f923d7e205 Support appending routes within the admin section by plugins 2015-01-30 18:02:11 -05:00
Neil Lalonde 750b27f973 FEATURE: show number of active users in the last 7 days on about page 2015-01-30 17:23:52 -05:00
Régis Hanol 79a7c7ce41 Merge pull request #3151 from lidlanca/patch-7
Fix: Resize event does not get cleared/unbind properly due to wrong usage of jQuery api.
2015-01-30 15:48:08 +01:00
Régis Hanol 09a3830418 Merge pull request #3152 from fullfatthings/fix_true_sso_bug
Fix force_avatar_update.to_i error as force_avatar_update is a boolean
2015-01-30 11:22:02 +01:00
Dan Singerman 64c4bd5dbf Fix force_avatar_update.to_i error as force_avatar_update is a boolean
If force_avatar_update is passed in sso attributes it errors on
force_avatar_update.to_i. The SingleSignOn class forces avatar_force_update
to a boolean, so it should be treated as such.
2015-01-30 09:51:38 +00:00
Sam d9ae4e791e woops should be a bit more specific 2015-01-30 19:17:26 +11:00
Sam 833b7b8f0b fix header primary missing color 2015-01-30 17:57:46 +11:00
lidlanca b4f1ffd4ea Fix: Resize event handler does not get cleared from window object,by wrong usage of jQuery api.
An handler get added each time a topic is loaded to the window object

jQuery resize api only pass data to the handler when triggered.
```.resize( [eventData ], handler ) ```

The unbind followed in willDestroyElement had no affect. 

.on(...) or bind(..) support the event.namespace

fix was not tested.
2015-01-30 01:57:44 -05:00
Sam 52bc03b5e6 FIX: summary mode was broken and missing a bunch of posts 2015-01-30 17:19:42 +11:00
Sam 784697bf12 added todo 2015-01-30 15:11:46 +11:00
Sam 1b1ea8e718 FEATURE: 'b' as a keyboard shortcut for bookmarking a topic 2015-01-30 15:11:24 +11:00
Sam 8b7afd644f regression, too many "new" badges on the "new" tab 2015-01-30 12:47:45 +11:00
Sam e77eaf9c95 adjust styling for tagged topics 2015-01-30 12:33:27 +11:00
Sam 561278eb38 correct broken mobile styling 2015-01-30 12:09:42 +11:00
Sam 8264dbd971 Merge pull request #3140 from fullfatthings/fix_missing_sso_avatar_bug
Fix bug when sso_overrides_avatar is true but no avatar_url is passed
2015-01-30 10:45:25 +11:00
Sam b1f81c0dca Merge pull request #3080 from riking/misc
Miscellaneous fixes from PR#3000
2015-01-30 10:23:17 +11:00
Sam ea7af7a83b Merge pull request #3135 from longhotsummer/fix-no-user-params
FIX: creating a user shouldn't error when optional fields aren't given
2015-01-30 10:12:57 +11:00
Neil Lalonde 67b262b93e Merge branch 'master' of github.com:discourse/discourse 2015-01-29 17:39:52 -05:00
Neil Lalonde 644c7a4675 FEATURE: Add an option to show custom user fields on profiles. Default is to not show them. 2015-01-29 17:38:39 -05:00