Changeset 1421569
- Timestamp:
- 05/21/2016 04:09:48 PM (10 years ago)
- Location:
- libravatar-replace/trunk
- Files:
-
- 2 edited
-
README.md (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libravatar-replace/trunk/README.md
r1421553 r1421569 61 61 62 62 Libravatar Replace is licensed under ISC license. It also uses 63 some code under separate licenses 63 some code under separate licenses. 64 64 65 65 ### Libravatar Replace ### 66 66 67 This license covers the difference between Libravatar and Libravatar Replace 68 69 Copyright (c) 2013 Christian Archer 67 Copyright (c) 2011, Gabriel Hautclocq 68 Copyright (c) 2013, Christian Archer 70 69 71 70 Permission to use, copy, modify, and/or distribute this software … … 83 82 WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 84 83 85 ### Libravatar###84 ### Third Party Libraries ### 86 85 87 Libravatar Replace is heavily based on the earlier Libravatar plugin 88 89 Copyright (c) 2011, Gabriel Hautclocq 90 91 Permission to use, copy, modify, and/or distribute this software 92 for any purpose with or without fee is hereby granted, provided 93 that the above copyright notice and this permission notice appear 94 in all copies. 95 96 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL 97 WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED 98 WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL 99 THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, 100 OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING 101 FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 102 NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION 103 WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 104 105 ### Services_Libravatar ### 106 107 The major component of the plugin is Services_Libravatar PHP library 108 109 The MIT License 110 111 Copyright (c) 2011 Services_Libravatar committers. 112 113 Permission is hereby granted, free of charge, to any person obtaining a copy 114 of this software and associated documentation files (the "Software"), to deal 115 in the Software without restriction, including without limitation the rights 116 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 117 copies of the Software, and to permit persons to whom the Software is 118 furnished to do so, subject to the following conditions: 119 120 The above copyright notice and this permission notice shall be included in 121 all copies or substantial portions of the Software. 122 123 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 124 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 125 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 126 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 127 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 128 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 129 THE SOFTWARE. 86 * Services_Libravatar: MIT 130 87 131 88 ## Changelog ## 132 89 133 ### 3.2.1 ### 134 * Fixed exception on unknown avatar default 135 136 ### 3.2.0 ### 137 * We are now on GitHub! 138 * Retina support moved from crazy styles to srcset 139 * Retina support is now a core function, option removed 140 141 ### 3.1.2 ### 142 * Fix smooth images in Twenty Thirteen 143 144 ### 3.1.1 ### 145 * Fix avatar icon in the header 146 147 ### 3.1.0 ### 148 * Retina support (experimental) 149 150 ### 3.0.0 ### 151 * Optional local cache (experimental) 152 * Options page 153 * Translations 154 155 ### 2.0.4.1 ### 156 * Add a readme inside the build system 157 * Add a section for license data 158 159 ### 2.0.4 ### 160 * Some refactoring (move classes to the separate files) 161 * Now we use vanilla Services_Libravatar, created compatibility class ServicesLibravatarExt 162 163 ### 2.0.3.1 ### 164 * Build for WordPress SVN via Composer 165 * Allow installation via Composer 166 * Since there are no changes to the plugin itself, it won't be committed to the WP plugin repo 167 168 ### 2.0.3 ### 169 * Default images in admin page fix 170 171 ### 2.0.2 ### 172 * No special blank treatment - it just works 173 * Public WordPress.org release 174 175 ### 2.0.1 ### 176 * 'blank' Gravatar default fixed and reimplemented 177 178 ### 2.0.0 ### 179 * Updated Services_Libravatar with SRV port discovery fix 180 * The plugin tries to completely replace Gravatar with Libravatar 181 * Beta support for BuddyPress 182 183 ### 1.0.4 ### 184 * Support for different fallbacks for the Libravatar 185 186 ### 1.0.3 ### 187 * Initial fork of the Libravatar plugin 188 189 ## Upgrade Notice ## 190 191 ### 3.1.0 ### 192 You may want to enable the Retina support in the settings 193 194 ### 2.0.0 ### 195 * Thank you for using the Libravatar Replace plugin! 196 197 ### 3.0.0 ### 198 * An optional local cache for the avatars is added 90 Full changelog can be found on [GitHub](https://github.com/sunchaserinfo/wp-libravatar-replace/releases) -
libravatar-replace/trunk/readme.txt
r1421553 r1421569 55 55 56 56 Libravatar Replace is licensed under ISC license. It also uses 57 some code under separate licenses 57 some code under separate licenses. 58 58 59 59 = Libravatar Replace = 60 60 61 This license covers the difference between Libravatar and Libravatar Replace 62 63 Copyright (c) 2013 Christian Archer 61 Copyright (c) 2011, Gabriel Hautclocq 62 Copyright (c) 2013, Christian Archer 64 63 65 64 Permission to use, copy, modify, and/or distribute this software … … 77 76 WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 78 77 79 = Libravatar=78 = Third Party Libraries = 80 79 81 Libravatar Replace is heavily based on the earlier Libravatar plugin 82 83 Copyright (c) 2011, Gabriel Hautclocq 84 85 Permission to use, copy, modify, and/or distribute this software 86 for any purpose with or without fee is hereby granted, provided 87 that the above copyright notice and this permission notice appear 88 in all copies. 89 90 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL 91 WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED 92 WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL 93 THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, 94 OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING 95 FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 96 NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION 97 WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 98 99 = Services_Libravatar = 100 101 The major component of the plugin is Services_Libravatar PHP library 102 103 The MIT License 104 105 Copyright (c) 2011 Services_Libravatar committers. 106 107 Permission is hereby granted, free of charge, to any person obtaining a copy 108 of this software and associated documentation files (the "Software"), to deal 109 in the Software without restriction, including without limitation the rights 110 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 111 copies of the Software, and to permit persons to whom the Software is 112 furnished to do so, subject to the following conditions: 113 114 The above copyright notice and this permission notice shall be included in 115 all copies or substantial portions of the Software. 116 117 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 118 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 119 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 120 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 121 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 122 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 123 THE SOFTWARE. 80 * Services_Libravatar: MIT 124 81 125 82 == Changelog == 126 83 127 = 3.2.1 = 128 * Fixed exception on unknown avatar default 129 130 = 3.2.0 = 131 * We are now on GitHub! 132 * Retina support moved from crazy styles to srcset 133 * Retina support is now a core function, option removed 134 135 = 3.1.2 = 136 * Fix smooth images in Twenty Thirteen 137 138 = 3.1.1 = 139 * Fix avatar icon in the header 140 141 = 3.1.0 = 142 * Retina support (experimental) 143 144 = 3.0.0 = 145 * Optional local cache (experimental) 146 * Options page 147 * Translations 148 149 = 2.0.4.1 = 150 * Add a readme inside the build system 151 * Add a section for license data 152 153 = 2.0.4 = 154 * Some refactoring (move classes to the separate files) 155 * Now we use vanilla Services_Libravatar, created compatibility class ServicesLibravatarExt 156 157 = 2.0.3.1 = 158 * Build for WordPress SVN via Composer 159 * Allow installation via Composer 160 * Since there are no changes to the plugin itself, it won't be committed to the WP plugin repo 161 162 = 2.0.3 = 163 * Default images in admin page fix 164 165 = 2.0.2 = 166 * No special blank treatment - it just works 167 * Public WordPress.org release 168 169 = 2.0.1 = 170 * 'blank' Gravatar default fixed and reimplemented 171 172 = 2.0.0 = 173 * Updated Services_Libravatar with SRV port discovery fix 174 * The plugin tries to completely replace Gravatar with Libravatar 175 * Beta support for BuddyPress 176 177 = 1.0.4 = 178 * Support for different fallbacks for the Libravatar 179 180 = 1.0.3 = 181 * Initial fork of the Libravatar plugin 182 183 == Upgrade Notice == 184 185 = 3.1.0 = 186 You may want to enable the Retina support in the settings 187 188 = 2.0.0 = 189 * Thank you for using the Libravatar Replace plugin! 190 191 = 3.0.0 = 192 * An optional local cache for the avatars is added 84 Full changelog can be found on [GitHub](https://github.com/sunchaserinfo/wp-libravatar-replace/releases)
Note: See TracChangeset
for help on using the changeset viewer.