diff --git a/.gitignore b/.gitignore index bd22e31..3a53d7f 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,6 @@ Makefile* deploy/*.bat deploy/*.command -deploy/BmsONE/* +deploy/*/ diff --git a/docs/readme_en.txt b/docs/readme_en.txt index 4bdd2e9..9d6a1ec 100644 --- a/docs/readme_en.txt +++ b/docs/readme_en.txt @@ -108,11 +108,11 @@ Contact me for questions. [Windows] Windows 10 Pro -Desktop Qt 5.7.1 MSVC2015 OpenGL 32bit/64bit +Desktop Qt 5.9.1 MSVC2015 OpenGL 32bit/64bit [Mac OS X] Mac OS X 10.10.5 -Desktop Qt 5.7.0 clang 64bit +Desktop Qt 5.9.0 clang 64bit [Common] Using Xiph.org's libogg 1.3.2 and libvorbis 1.3.5. @@ -155,7 +155,7 @@ BmsONE 101 - The Basics by ドルフィン 7. History -May 11 2017 beta 0.2.0 +Sep 23 beta 0.2.1 - Made the source code public on GitHub. - Began to supply 64bit versions on Windows. - Fixed crashes when scrolling the chart in Sequence View particularly on Mac. @@ -165,6 +165,10 @@ May 11 2017 beta 0.2.0 - Partly fixed a bug that waveform display is sometimes not refreshed. - Fixed a bug that "Selected Objects" window does not appear when you insert a BPM event. - Fixed a bug that undoing insertion of a BPM event may cause a crash. + - Implemented grid setting. + - 24bit or 32bit WAV files are now supported. + - Implemented BMS importing. + - Implemented keyboard (24keys, etc.) mode. Feb 12 2017 beta 0.1.5 - You can edit "title_image" and "preview_music" in the Information window, which are in bmson 1.0.0 spec. diff --git a/docs/readme_ja.txt b/docs/readme_ja.txt index 924fcf5..b2888c5 100644 --- a/docs/readme_ja.txt +++ b/docs/readme_ja.txt @@ -118,11 +118,11 @@ BmsONE の作者である exclusion はこのソフトを使用して生じた [Windows] Windows 10 Pro -Desktop Qt 5.7.1 MSVC2015 OpenGL 32bit/64bit +Desktop Qt 5.9.1 MSVC2015 OpenGL 32bit/64bit [Mac OS X] Mac OS X 10.10.5 -Desktop Qt 5.7.0 clang 64bit +Desktop Qt 5.9.0 clang 64bit [共通] Xiph.org 様の libogg 1.3.2、libvorbis 1.3.5 を使用しています。 @@ -166,7 +166,7 @@ BmsONE 101 - The Basics (ドルフィン様) 7. 履歴 -2017年05月11日 beta 0.2.0 +2017年09月23日 beta 0.2.1 - GitHubにソースコードを公開した。 - Windowsでも64bit版の提供を開始した。 - 特にMac版で譜面スクロール時に頻繁にクラッシュするバグを修正した。 @@ -176,6 +176,10 @@ BmsONE 101 - The Basics (ドルフィン様) - 波形表示が更新されない場合がある問題を改善した。 - BPMイベントなどを挿入しても「選択オブジェクト」ウィンドウが表示されない場合があるのを修正した。 - BPMイベントの挿入をアンドゥするとクラッシュする場合があるバグを修正した。 + - グリッド設定機能を実装した。 + - 24bit・32bitのWAVファイルに対応した。 + - BMSファイルのインポート機能を実装した。 + - キーボードモード(24keyなど)に対応した。 2017年02月12日 beta 0.1.5 - bmson 1.0.0の仕様のうち、「情報」ウィンドウで未対応だったタイトル画像(title_image)とプレビュー音(preview_music)を編集できるようにした。 diff --git a/src/AppInfo.h b/src/AppInfo.h index 4f4b39a..525d7f6 100644 --- a/src/AppInfo.h +++ b/src/AppInfo.h @@ -4,8 +4,8 @@ #include #define APP_NAME "BmsONE" -#define APP_VERSION_STRING "beta 0.2.0" -#define APP_URL "http://sky.geocities.jp/exclusion_bms/" +#define APP_VERSION_STRING "beta 0.2.1" +#define APP_URL "https://github.com/excln/BmsONE" #define ORGANIZATION_NAME "ExclusionBms" #ifdef Q_OS_WIN64