Changeset 45fa64c in github
- Timestamp:
- Nov 18, 2011 7:51:28 AM (18 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
- Children:
- e37e7dd
- Parents:
- 307e684
- Files:
-
- 2 added
- 6 edited
-
CHANGELOG (modified) (2 diffs)
-
program/js/app.js (modified) (2 diffs)
-
program/localization/en_US/labels.inc (modified) (2 diffs)
-
program/localization/pl_PL/labels.inc (modified) (1 diff)
-
program/steps/settings/about.inc (added)
-
skins/default/includes/settingstabs.html (modified) (1 diff)
-
skins/default/settings.css (modified) (1 diff)
-
skins/default/templates/about.html (added)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
rc1fcd1b r45fa64c 2 2 =========================== 3 3 4 - Added About tab in Settings 5 - TinyMCE: 6 - updated to 3.4.6 7 - security issue: removed moxieplayer (embedding flv and mp4 is not supported anymore) 8 9 RELEASE 0.7-beta 10 ---------------- 4 11 - Fix handling of HTML form elements in messages (#1485137) 5 12 - Fix regression in setting recipient to self when replying to a Sent message (#1487074) … … 18 25 - Fix error on opening searched LDAP contact (#1488144) 19 26 - Fix redundant line break in flowed format (#1488146) 20 - TinyMCE:21 - updated to 3.4.622 - security issue: removed moxieplayer (embedding flv and mp4 is not supported anymore)23 27 - Fix IDN address validation issue (#1488137) 24 28 - Fix JS error when dst_active checkbox doesn't exist (#1488133) -
program/js/app.js
rfa9edc3 r45fa64c 156 156 157 157 // enable general commands 158 this.enable_command('logout', 'mail', 'addressbook', 'settings', 'save-pref', 'compose', 'undo', true);158 this.enable_command('logout', 'mail', 'addressbook', 'settings', 'save-pref', 'compose', 'undo', 'about', true); 159 159 160 160 if (this.env.permaurl) … … 503 503 case 'logout': 504 504 this.switch_task(command); 505 break; 506 507 case 'about': 508 location.href = '?_task=settings&_action=about'; 505 509 break; 506 510 -
program/localization/en_US/labels.inc
r710b1bd r45fa64c 344 344 // settings 345 345 $labels['settingsfor'] = 'Settings for'; 346 346 $labels['about'] = 'About'; 347 347 $labels['preferences'] = 'Preferences'; 348 348 $labels['userpreferences'] = 'User preferences'; … … 466 466 $labels['undo'] = 'Undo'; 467 467 468 $labels['plugin'] = 'Plugin'; 469 $labels['version'] = 'Version'; 470 $labels['source'] = 'Source'; 471 $labels['license'] = 'License'; 472 $labels['webpage'] = 'Webpage'; 473 468 474 // units 469 475 $labels['B'] = 'B'; -
program/localization/pl_PL/labels.inc
r710b1bd r45fa64c 488 488 $labels['isdraft'] = 'To jest kopia robocza wiadomoÅci.'; 489 489 $labels['autocompletesingle'] = 'Nie pokazuj alternatywnych adresów przy autouzupeÅnianiu'; 490 $labels['plugin'] = 'Wtyczka'; 491 $labels['version'] = 'Wersja'; 492 $labels['source'] = 'ŹródÅa'; 493 $labels['license'] = 'Licencja'; 494 $labels['webpage'] = 'Strona internetowa'; 495 $labels['about'] = 'O programie'; 490 496 491 497 ?> -
skins/default/includes/settingstabs.html
rcc97ea0 r45fa64c 3 3 <span id="settingstabfolders" class="tablink"><roundcube:button command="folders" type="link" label="folders" title="managefolders" class="tablink" /></span> 4 4 <span id="settingstabidentities" class="tablink"><roundcube:button command="identities" type="link" label="identities" title="manageidentities" class="tablink" /></span> 5 <span id="settingstababout" class="tablink"><roundcube:button command="about" type="link" label="about" title="about" class="tablink" /></span> 5 6 <roundcube:container name="tabs" id="tabsbar" /> 6 7 <script type="text/javascript"> if (window.rcmail) rcmail.add_onload(rcube_init_settings_tabs); </script> -
skins/default/settings.css
r24f812dc r45fa64c 171 171 font-family: monospace; 172 172 } 173 174 #license 175 { 176 margin-left: 20px; 177 left: 20px; 178 width: 500px; 179 height: 250px; 180 background: url(images/watermark.gif) no-repeat center; 181 } 182 183 #license .sysname 184 { 185 font-size: 18px; 186 font-weight: bold; 187 } 188 189 #license .copyright 190 { 191 font-weight: bold; 192 } 193 194 #license .license, 195 #license .links 196 { 197 margin-top: 30px; 198 } 199 200 #pluginlist 201 { 202 border: 1px solid #999; 203 margin-left: 20px; 204 top: 300px; 205 left: 20px; 206 width: 500px; 207 } 208 209 #pluginlist td.source, 210 #pluginlist td.license, 211 #pluginlist td.version 212 { 213 text-align: center; 214 } 215 216 div.crop 217 { 218 overflow: auto; 219 }
Note: See TracChangeset
for help on using the changeset viewer.
