Update help contents

This commit is contained in:
1024jp 2023-02-04 11:17:07 +09:00
parent 4f4753d381
commit c61becb737
12 changed files with 111 additions and 15 deletions

View File

@ -7,8 +7,8 @@ Change Log
### New Features
- Add “last modified date” to the print header/footer options.
- Add “Ignore” option to the inconsistent line endigns alert (close #1427)
- Add “last modified date” option to the print header/footer options.
- Add “Ignore” option to the inconsistent line endings alert.
### Improvements

View File

@ -14,8 +14,16 @@
<p>To print your document, choose File &gt; Print.</p>
<ul>
<li>The options youve set in the Print settings pane are in effect when you print.</li>
<li>In the print dialog, you open and choose CotEditor from the drop-down menu, then you can temporarily modify your print settings (The font cannot be changed here).</li>
<li>In the CotEditor section in the Print dialog, you can temporarily modify your print settings (The font cannot be changed here).</li>
</ul>
<section id="cf">
<h2>See also</h2>
<ul>
<li><a href="settings_print.html">Change Print settings</a></li>
</ul>
</section>
</body>
</html>

View File

@ -14,6 +14,45 @@
<h1>Release notes for CotEditor</h1>
<article>
<header>
<h1>CotEditor 4.4.5</h1>
<p>release: <time>2023-02-04</time></p>
</header>
<section>
<h2>New Features</h2>
<ul>
<li>Add “last modified date” option to the print header/footer options.</li>
<li>Add “Ignore” option to the inconsistent line endings alert.</li>
</ul>
</section>
<section>
<h2>Improvements</h2>
<ul>
<li><span class="trivial">dev</span>: Update Yams from 5.0.3 to 5.0.4.</li>
</ul>
</section>
<section>
<h2>Fixes</h2>
<ul>
<li>Fix an issue that the print Header/Footer alignment options did not match the selected settings.</li>
<li>Fix an issue that some shortcut keys could be used for menu key binding customization without warning even when they are used for existing commands.</li>
<li>Fix missing localization in the Find window.</li>
<li>Remove outdated descriptions in the Key Binding pane.</li>
</ul>
</section>
</article>
<article>
<header>
<h1>CotEditor 4.4.4</h1>

View File

@ -29,7 +29,7 @@
<ul>
<li><strong>Same as documents font</strong>: Use the same font used in the editor.</li>
<li><strong>Select</strong>: Always use a specific font and font size for printing purpose. To change the font or font size, click Select, then choose a different font or font size.</li>
<li><strong>Select</strong>: Always use a specific font and font size for printing purpose. To change the font or font size, click Select, then choose a font and font size.</li>
</ul></td>
</tr>
@ -62,6 +62,7 @@
<li><strong>Document Name</strong>: The name of the document file.</li>
<li><strong>File Path</strong>: The path to the document file.</li>
<li><strong>Print Date</strong>: The current date and time.</li>
<li><strong>Last Modified Date</strong>: The date and time when the document was lastly modified.</li>
<li><strong>Page Number</strong>: The number of each page.</li>
</ul></td>
</tr>

View File

@ -21,7 +21,7 @@
<li><a href="pgs/howto_inspect_fileinfo.html">Get information about a document</a></li>
<li><a href="pgs/howto_inspect_character.html">Get information about a character</a></li>
<li><a href="pgs/about_line_endings.html">Handle various types of line endings</a></li>
<li><a href="pgs/howto_find_newline.html">Find inconsistent line endings</a></li>
<li><a href="pgs/howto_find_inconsistent_line_endings.html">Find inconsistent line endings</a></li>
<li><a href="pgs/howto_jump.html">Go to a specific line</a></li>
<li><a href="pgs/howto_display_invisibles.html">Display invisible characters</a></li>
<li><a href="pgs/howto_count_characters.html">Count characters</a></li>

View File

@ -50,7 +50,6 @@
<tbody>
<tr><td>正規表現</td><td>正規表現を使って検索をします。</td></tr>
<tr><td>大文字/小文字を無視</td><td>大文字/小文字を区別せずに検索します。</td></tr>
<tr><td>インクリメンタルに検索</td><td>検索フィールドへでの入力のたびごとに自動で検索を実行します。</td></tr>
<tr><td>選択範囲のみ</td><td>検索対象を現在の選択範囲のみに限定します。</td></tr>
</tbody>
</table>
@ -67,8 +66,8 @@
<tr><th>オプション</th><th>説明</th></tr>
</thead>
<tbody>
<tr><td>検索を折り返す</td><td>挿入ポイント以降に一致がなかったときに書類から一致を探します。</td></tr>
<tr><td>インクリメンタルに検索</td><td>検索フィールドに入力するたびに逐次書類を検索。</td></tr>
<tr><td>検索を折り返す</td><td>挿入ポイント以降に一致がなかったときに書類の最初から一致を探します。</td></tr>
<tr><td>インクリメンタルに検索</td><td>検索フィールドに入力するたびに逐次書類を検索します</td></tr>
</tbody>
</table>
@ -82,7 +81,7 @@
<tr><th>オプション</th><th>説明</th><th>デフォルト</th></tr>
</thead>
<tbody>
<tr><td>単語に完全一致</td><td>入力した単語と完全に一致する単語のみに限定</td><td>無効</td></tr>
<tr><td>単語に完全一致</td><td>入力した単語と完全に一致する単語のみに限定します。</td><td>無効</td></tr>
<tr><td>文字を厳密に判別</td><td>バイトレベルで完全一致する文字列にのみ一致します。</td><td>無効</td></tr>
<tr><td>発音区別記号を無視</td><td>文字の発音記号を無視して検索します。(例: ö = o</td><td>無効</td></tr>
<tr><td>全角/半角を無視</td><td>文字の全角/半角を無視して検索します。(例: = a</td><td>無効</td></tr>

View File

@ -14,8 +14,17 @@
<p>書類をプリントするには、「ファイル」メニューの「プリント」を選びます。</p>
<ul>
<li>あらかじめ設定の「プリント」で設定されたオプションが有効になります。</li>
<li>プリントダイアログのポップアップメニューを開くと「CotEditor」という項目があり、ここで一時的なプリント設定変更が可能です(ただしここでは、フォントの変更はできません)。</li>
<li>プリントダイアログの「CotEditor」セクションで一時的なプリント設定変更が可能です(ただしここでは、フォントの変更はできません)。</li>
</ul>
<section id="cf">
<h2>関連項目</h2>
<ul>
<li><a href="settings_print.html">「プリント」設定を変更する</a></li>
</ul>
</section>
</body>
</html>

View File

@ -14,6 +14,45 @@
<h1>CotEditorのリリースート</h1>
<article>
<header>
<h1>CotEditor 4.4.5</h1>
<p>リリース: <time>2023-02-04</time></p>
</header>
<section>
<h2>新機能</h2>
<ul>
<li>プリントのヘッダ/フッタオプションに最終変更日時を追加</li>
<li>改行コードの不一致アラートの選択肢に「無視」を追加</li>
</ul>
</section>
<section>
<h2>改良</h2>
<ul>
<li><span class="trivial">開発</span>: Yamsを5.0.3から5.0.4に更新</li>
</ul>
</section>
<section>
<h2>修正</h2>
<ul>
<li>プリントオプションのヘッダ/フッタの行揃えボタンが一部機能していなかった不具合を修正</li>
<li>メニューキーバインドの設定で、一部の既に使用されているショートカットキーが警告なく登録できてしまった不具合を修正</li>
<li>検索ウインドウのローカライズ漏れを修正</li>
<li>キーバインド設定にあった過去のバージョンにあった制約に関する説明文を削除</li>
</ul>
</section>
</article>
<article>
<header>
<h1>CotEditor 4.4.4</h1>

View File

@ -24,7 +24,7 @@
</section>
<section>
<h3><code>path</code>の後方互換性の削除</h3>
<p>CotEditor 2.0.0廃止にされつつ後方互換性のために密かに対応されていた<code>path</code>は、このバージョンで完全に削除されました。</p>
<p>CotEditor 2.0.0廃止にされつつ後方互換性のために密かに対応されていた<code>path</code>は、このバージョンで完全に削除されました。</p>
</section>
</article>

View File

@ -27,7 +27,7 @@
<li>UNIXスクリプト</li>
</ul>
<p>AppleScriptJXA; JavaScript for Automationを含むを使うとより詳細アプリケーションの制御をすることができます。一方UNIXスクリプトでは最前面の書類の内容しか編集できませんが、Python, Ruby, Perlなど、より一般的な好みの言語でスクリプトを書くことができます。用途に合わせて使い分けてください。スクリプトの書き方についての詳細は「<a href="script_osascript.html">AppleScriptでスクリプティングする</a>」または「<a href="script_unixscript.html">UNIXスクリプトでスクリプティングする</a>」を参照してください。</p>
<p>AppleScriptJXA; JavaScript for Automationを含むを使うとより詳細アプリケーションの制御をすることができます。一方UNIXスクリプトでは最前面の書類の内容しか編集できませんが、Python, Ruby, Perlなど、より一般的な好みの言語でスクリプトを書くことができます。用途に合わせて使い分けてください。スクリプトの書き方についての詳細は「<a href="script_osascript.html">AppleScriptでスクリプティングする</a>」または「<a href="script_unixscript.html">UNIXスクリプトでスクリプティングする</a>」を参照してください。</p>
<h2>スクリプトを追加または削除する</h2>

View File

@ -2,7 +2,7 @@
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="「プリント」設定, プリント設定,「印刷」設定, 印刷設定, 「印刷」, 印刷, プリント"/>
<meta name="keywords" content="「プリント」設定, プリント設定, 印刷, プリント"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<title>CotEditorで「プリント」設定を変更する</title>
</head>
@ -30,7 +30,7 @@
<ul>
<li><strong>書類の設定と同じ</strong>: プリントするときにエディタで利用しているフォントをそのまま使います。</li>
<li><strong>選択</strong>: エディタの表示に関わらず、プリントには専用のフォントを使います。フォントまたはフォントサイズを変更するには、「選択」をクリックしてから、別のフォントまたはフォントサイズを選択します。</li>
<li><strong>選択</strong>: エディタの表示に関わらず、プリントには専用のフォントを使います。フォントまたはフォントサイズを変更するには、「選択」をクリックしてから、フォントとフォントサイズを選択します。</li>
</ul></td>
</tr>
@ -63,6 +63,7 @@
<li><strong>書類名</strong>: プリントする書類のファイル名。</li>
<li><strong>ファイルパス</strong>: 書類ファイルのパス。</li>
<li><strong>プリント日時</strong>: プリント時の時間。</li>
<li><strong>最終変更日時</strong>: 書類を最後に変更した時の時間。</li>
<li><strong>ページ番号</strong>: 各ページの番号。</li>
</ul></td>
</tr>

View File

@ -21,7 +21,7 @@
<li><a href="pgs/howto_inspect_fileinfo.html">書類の情報を見る</a></li>
<li><a href="pgs/howto_inspect_character.html">文字情報を表示する</a></li>
<li><a href="pgs/about_line_endings.html">多様な改行コードを扱う</a></li>
<li><a href="pgs/howto_find_newline.html">混在する改行コードを探す</a></li>
<li><a href="pgs/howto_find_inconsistent_line_endings.html">混在する改行コードを探す</a></li>
<li><a href="pgs/howto_jump.html">特定の行に移動する</a></li>
<li><a href="pgs/howto_display_invisibles.html">不可視文字を表示する</a></li>
<li><a href="pgs/howto_count_characters.html">文字をカウントする</a></li>