diff --git a/languages/vblg-oi-contest-schedule-zh_CN.po b/languages/vblg-oi-contest-schedule-zh_CN.po index 5e8c322..1b9230a 100644 --- a/languages/vblg-oi-contest-schedule-zh_CN.po +++ b/languages/vblg-oi-contest-schedule-zh_CN.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: vblg OI Contest Schedule 0.1.0\n" +"Project-Id-Version: vblg OI Contest Schedule 0.2.0\n" "Report-Msgid-Bugs-To: https://github.com/hanyixuanten/OI-contest-fetch/issues\n" "POT-Creation-Date: 2026-08-06 00:00+0000\n" "PO-Revision-Date: 2026-08-06 00:00+0000\n" diff --git a/languages/vblg-oi-contest-schedule.pot b/languages/vblg-oi-contest-schedule.pot index 8d00051..e4eb0f8 100644 --- a/languages/vblg-oi-contest-schedule.pot +++ b/languages/vblg-oi-contest-schedule.pot @@ -1,6 +1,6 @@ msgid "" msgstr "" -"Project-Id-Version: vblg OI Contest Schedule 0.1.0\n" +"Project-Id-Version: vblg OI Contest Schedule 0.2.0\n" "Report-Msgid-Bugs-To: https://github.com/hanyixuanten/OI-contest-fetch/issues\n" "POT-Creation-Date: 2026-08-06 00:00+0000\n" "MIME-Version: 1.0\n" diff --git a/readme.txt b/readme.txt index b2460ed..631ec7a 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: contest, schedule, block, dashboard, competitive programming Requires at least: 6.4 Tested up to: 7.0 Requires PHP: 7.4 -Stable tag: 0.1.0 +Stable tag: 0.2.0 License: GPL-3.0-only License URI: https://www.gnu.org/licenses/gpl-3.0.html @@ -87,6 +87,13 @@ Service and data source: == Changelog == += 0.2.0 = + +* Renamed the plugin, package slug, text domain, and distribution workflows to **vblg OI Contest Schedule**. +* Renamed the shortcode to `[oics_oi_contest_schedule]`. +* Changed the dashboard widget to use the standard responsive layout instead of the compact layout. +* Changed translation handling to use WordPress.org language packs and excluded translation sources from release packages. + = 0.1.0 = * Added the upcoming contest dashboard widget. @@ -99,6 +106,10 @@ Service and data source: == Upgrade Notice == += 0.2.0 = + +The plugin slug and shortcode have changed. Replace `[oi_contest_schedule]` with `[oics_oi_contest_schedule]` after upgrading. + = 0.1.0 = Initial release. \ No newline at end of file diff --git a/vblg-oi-contest-schedule.php b/vblg-oi-contest-schedule.php index a7e8171..a3ae5bd 100644 --- a/vblg-oi-contest-schedule.php +++ b/vblg-oi-contest-schedule.php @@ -3,7 +3,7 @@ * Plugin Name: vblg OI Contest Schedule * Plugin URI: https://github.com/hanyixuanten/oi-contest-schedule * Description: Display upcoming OI contests in a dashboard widget or with an editor block. - * Version: 0.1.0 + * Version: 0.2.0 * Requires at least: 6.4 * Requires PHP: 7.4 * Author: hanyixuanten @@ -15,7 +15,7 @@ defined( 'ABSPATH' ) || exit; -define( 'OICS_VERSION', '0.1.0' ); +define( 'OICS_VERSION', '0.2.0' ); define( 'OICS_FILE', __FILE__ ); define( 'OICS_PATH', plugin_dir_path( __FILE__ ) ); define( 'OICS_URL', plugin_dir_url( __FILE__ ) );