Typecho Versions Save

A PHP Blogging Platform. Simple and Powerful.

v1.3.0-alpha

4 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/typecho/typecho/compare/v1.2.1...v1.3.0-alpha

v1.2.1

11 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/typecho/typecho/compare/v1.2.0...v1.2.1

v1.2.1-rc.2

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/typecho/typecho/compare/v1.2.1-rc...v1.2.1-rc.2

v1.2.1-rc

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/typecho/typecho/compare/v1.2.0...v1.2.1-rc

v1.2.0

2 years ago

We're not kidding, Typecho returns.

Read more details

v1.2.0-rc.2

2 years ago

Fix #1187 #1189 #1196 #1203 #1212 #1220 #1222 #1257 #1268

v1.2.0-rc.1

2 years ago

Fix #1167 Fix #1173 Fix #1177 Fix #1178 Fix #1179

ci

2 years ago

Only for development and testing.

v1.2.0-beta.2

2 years ago

fix #1152, #1154, #1155, #1156, #1157, #1159, #1160, #1161, #1162, #1158, #1163, #1164, #1165

v1.2.0-beta.1

2 years ago
  • Fix many bugs
  • New installation UI
  • Improve dashboard UI on mobile platform
  • Improve markdown editor & update markdown parser
  • Improve backup performance
  • New abastact layer for widget
  • Improve database framework
  • Reformat code for PHP 7.2 (now using namespace)
  • Use new version rule (1.x/<year>.<month>.<day> => 1.x.<minor version>)
  • For creating a widget Before
    $this->widget('Widget_Metas_Category_List');
    Typecho_Widget::widget('Widget_Metas_Category_List');
    
    After
    \Widget\Metas\Category\Rows::alloc();
    
    ⚠️ You can always use the old way to create a widget, but a migration is recommended.
  • Improve API $options->adminStaticUrl()
    $options->adminStaticUrl('css', 'style.css'); // It will display a url with version(`<url>?v=<version>`)
                                                  // no need to add it manually.
    
    $options->adminStaticUrl('css', 'style.css', ture); // Return a url instead of displaying it