チェンジセット 100
- 更新日時:
- 2010/01/11 00:13:27 (2 年 前)
- パス:
- branches/release-1.0
- ファイル:
-
- 4 追加
- 2 削除
- 4 変更
-
chrome.manifest (変更) (1 diff)
-
chrome/content/splash/logo-3.0.png (追加)
-
chrome/content/splash/logo-3.5.png (追加)
-
chrome/content/splash/logo-3.6.png (追加)
-
chrome/content/splash/splash.js (変更) (1 diff)
-
chrome/content/splash/splash.xul (変更) (1 diff)
-
chrome/content/splash/suichu-3.0.png (削除)
-
chrome/content/splash/suichu-3.5.png (削除)
-
chrome/content/splash/suichu.png (追加)
-
defaults/preferences/vocalofx.js (変更) (1 diff)
凡例:
- 変更なし
- 追加
- 削除
-
branches/release-1.0/chrome.manifest
r91 r100 10 10 override chrome://branding/content/icon48.png chrome://vocalofx/content/icons/Firemiku_icon48.png 11 11 override chrome://branding/content/icon64.png chrome://vocalofx/content/icons/Firemiku_icon64.png 12 override chrome://vocalofx/content/splash/suichu.png chrome://vocalofx/content/splash/suichu-3.0.png appversion>=3.0 13 override chrome://vocalofx/content/splash/suichu.png chrome://vocalofx/content/splash/suichu-3.5.png appversion>=3.5 12 override chrome://vocalofx/content/splash/logo.png chrome://vocalofx/content/splash/logo-3.0.png appversion>=3.0 13 override chrome://vocalofx/content/splash/logo.png chrome://vocalofx/content/splash/logo-3.5.png appversion>=3.5 14 override chrome://vocalofx/content/splash/logo.png chrome://vocalofx/content/splash/logo-3.6.png appversion>=3.6 -
branches/release-1.0/chrome/content/splash/splash.js
r61 r100 8 8 var width = pref.getIntPref("extensions.vocalofx.skin_splash.screen_width"); 9 9 var height = pref.getIntPref("extensions.vocalofx.skin_splash.screen_height"); 10 var logo_image = pref.getCharPref("extensions.vocalofx.skin_splash.screen_logo"); 10 11 if(!image){ 11 12 image = "chrome://vocalofx/content/splash/eclipse-3.4.png"; 12 13 width = 455; 13 14 height = 295; 15 logo_image = ""; 14 16 } 15 var screen = document.getElementById("screen"); 16 screen.src = image; 17 18 var screen = document.getElementById("vocalofx-splash"); 19 screen.style.backgroundRepeat = "no-repeat"; 20 screen.style.backgroundImage = "url('" + image + "')"; 17 21 screen.width = width; 18 22 screen.height = height; 23 24 var logo = document.getElementById("logo"); 25 if(logo_image){ 26 logo.src = logo_image; 27 logo.width = width; 28 logo.height = 400 * (width / 1600); 29 } 30 31 var header = document.getElementById("header"); 32 header.height = 180; 33 var footer = document.getElementById("footer"); 34 footer.height = height - logo.height - header.height; 19 35 20 36 var voice = pref.getCharPref("extensions.vocalofx.skin_splash.voice"); -
branches/release-1.0/chrome/content/splash/splash.xul
r61 r100 9 9 </keyset> 10 10 11 <image id="screen" onclick="window.close();"/> 11 <vbox id="header" onclick="window.close();"/> 12 <image id="logo" onclick="window.close();"/> 13 <vbox id="footer" onclick="window.close();"/> 12 14 </window> -
branches/release-1.0/defaults/preferences/vocalofx.js
r91 r100 21 21 pref("extensions.vocalofx.skin_splash.screen_width", 455); 22 22 pref("extensions.vocalofx.skin_splash.screen_height", 303); 23 pref("extensions.vocalofx.skin_splash.screen_logo", "chrome://vocalofx/content/splash/logo.png"); 23 24 pref("extensions.vocalofx.skin_splash.voice", "chrome://vocalofx/content/splash/miku_kidou.wav"); 24 25 pref("extensions.vocalofx.skin_use_allparet", false);
