Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

指定桁縦線の指定できる数を増やす #1945

Merged
merged 4 commits into from
Apr 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sakura_core/config/maxdata.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ enum maxdata{
MAX_TAGJUMPNUM = 100, // タブジャンプ情報最大値
MAX_TAGJUMP_KEYWORD = 30, //タグジャンプ用キーワード最大登録数2005.04.04 MIK
MAX_KEYWORDSET_PER_TYPE = 10, // 2004.01.23 genta (for MIK) タイプ別設定毎のキーワードセット数
MAX_VERTLINES = 10, // 2005.11.08 Moca 指定桁縦線
MAX_VERTLINES = 200, // 2005.11.08 Moca 指定桁縦線 // 2024.04.27 kurages 200に増やした

// MRUリストに関係するmaxdata
MAX_MRU = 36, //Sept. 27, 2000 JEPRO 0-9, A-Z で36個になるのでそれに合わせて30→36に変更。2007.10.23 kobake maxdataに移動。
Expand Down
5 changes: 4 additions & 1 deletion sakura_core/config/system_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -553,12 +553,15 @@
Version 178:
STypeConfig::m_bDetectIndentationStyleOnFileLoad 追加

Version 179:
STypeConfig::m_nVertLineIdxの要素数を変更した為、DLLSHAREDATA のメモリレイアウトが変更

-- 統合されたので元に戻す(1000~1023が使用済み) 2008.11.16 nasukoji
-- Version 1000:
-- バージョン1000以降を本家統合までの間、使わせてください。かなり頻繁に構成が変更されると思われるので。by kobake 2008.03.02

*/
#define N_SHAREDATA_VERSION 178
#define N_SHAREDATA_VERSION 179
#define STR_SHAREDATA_VERSION NUM_TO_STR(N_SHAREDATA_VERSION)
#define GSTR_SHAREDATA (L"SakuraShareData" _T(CON_SKR_MACHINE_SUFFIX_) _T(_CODE_SUFFIX_) _T(_DEBUG_SUFFIX_) _T(STR_SHAREDATA_VERSION))

Expand Down
Loading