Changeset 512491
- Timestamp:
- 02/29/2012 07:55:49 PM (14 years ago)
- Location:
- web-fonts/trunk
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
modules/google-web-fonts/google-web-fonts.php (modified) (3 diffs)
-
modules/google-web-fonts/views/backend/settings/fonts.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
web-fonts/trunk
- Property svn:mergeinfo changed
/web-fonts/branches/1.1.x (added) merged: 507491,511386,512484
- Property svn:mergeinfo changed
-
web-fonts/trunk/modules/google-web-fonts/google-web-fonts.php
r507489 r512491 4 4 Plugin URI: http://www.google.com/webfonts 5 5 Description: A plugin for the Web Fonts plugin produced by Fonts.com and Monotype Imaging. This built in plugin adds Google Web Fonts support to the Web Fonts plugin. 6 Version: 1.0.0-RC 16 Version: 1.0.0-RC2 7 7 Author: Nick Ohrn of Plugin-Developer.com 8 8 Author URI: http://plugin-developer.com/ … … 15 15 16 16 //// VERSION 17 const VERSION = '1.0.0-RC 1';17 const VERSION = '1.0.0-RC2'; 18 18 19 19 //// KEYS … … 184 184 185 185 foreach($enabled_fonts as $enabled_font_id => $enabled_font) { 186 $data['fonts'][] = web_fonts_prepare_font_item('google-web-fonts', $enabled_font_id, $enabled_font['family_name'], $enabled_font['family'], 'Quick Brown Fox Jumped Over The Lazy Dog', $font_selector_map[$enabled_font_id], array('font -style' => $enabled_font['style'], 'font-weight' => $enabled_font['weight']));186 $data['fonts'][] = web_fonts_prepare_font_item('google-web-fonts', $enabled_font_id, $enabled_font['family_name'], $enabled_font['family'], 'Quick Brown Fox Jumped Over The Lazy Dog', $font_selector_map[$enabled_font_id], array('fontFamily' => $enabled_font['family'], 'fontStyle' => $enabled_font['style'], 'fontWeight' => $enabled_font['weight'])); 187 187 } 188 188 -
web-fonts/trunk/modules/google-web-fonts/views/backend/settings/fonts.php
r507471 r512491 51 51 <div data-bind="foreach: fonts" id="google-web-fonts-font-items-wrapper"> 52 52 <div class="google-web-fonts-font-item"> 53 <div data-bind="style: { 'font-family': family(), 'font-weight': weight(), 'font-style': style() }" class="google-web-fonts-font-item-sample">AaGg</div>53 <div data-bind="style: { fontFamily: family(), fontWeight: weight(), fontStyle: style() }" class="google-web-fonts-font-item-sample">AaGg</div> 54 54 <div data-bind="text: family_name" class="google-web-fonts-font-item-name"></div> 55 55 <div class="google-web-fonts-font-item-charset"></div> -
web-fonts/trunk/readme.txt
r507490 r512491 4 4 Requires at least: 3.3 5 5 Tested up to: 3.3.1 6 Stable tag: 1. 0.46 Stable tag: 1.1.0 7 7 8 8 Start using web fonts on your site today! Support for web fonts from Fonts.com is included. Browse, enable and specify selectors for each font. … … 52 52 53 53 After creating a project, you can click on "API Access" and then copy and paste the key you find 54 there into the field in the plugin. 54 there into the field in the plugin. Make sure you've enabled the Web Fonts Developer API from the 55 list you'll see when clicking on the "Services" tab on the left. 55 56 56 57 = What web font providers will be integrated in the future? =
Note: See TracChangeset
for help on using the changeset viewer.