Skip to content

Releases: nyaosorg/nyaos3000

3.3.9_0

13 Jun 10:19

Choose a tag to compare

  • Support to quote the equation all in 'set' statement like CMD.EXE.For example: SET "FOO=BAR"

  • CMD.EXE のように「SET "AHAHA=IHIHI"」という書き方が出来るようにした。

3.1.0_1

30 May 14:58

Choose a tag to compare

  • same between 3.0.0_0 and _1

  • 3.0.0_0〜3.0.0_1 間と同じ修正

2.96_0

30 May 15:32

Choose a tag to compare

  • add: nyaos.command2 , nyaos.filter2 , nyaos.dirstack
  • del: nyaos.exe's option "-a"
  • lua_e command support redirect of standard-input
  • can refer errorlevel with %errorlevel%
  • can use pairs/ipairs function for nyaos.alias/suffix/option/history/dirstack
  • nyaos's option "-D" reports compiled date and timing of loading _nya
  • Bugfix: nyaos aborts when error occurs at executing 'source'.

  • nyaos.command2 の設置
  • nyaos.filter2 の設置
  • nyaos.command/command2 の戻り値を errorlevel へ反映させるようにした。
  • nyaos.dirstack の設置
  • nyaos.alias/suffix/option を pairs関数で扱えるようにした。
  • nyaos.history/dirstack を ipairs関数で扱えるようにした。
  • 起動オプション「-D」で、コンパイル日時、_nya のロードタイミングを表示するようにした。
  • 起動オプション「-a」廃止
  • lua_e コマンドでの入力リダイレクトのサポート
  • %errorlevel% で、エラー値を参照できるようにした[蟲繕]
  • source 実行中にエラーが発生すると、NYAOS 本体が終了する問題を修正.

2.93_0

30 May 15:32

Choose a tag to compare

  • Lua hook for completion.
  • HIDDEN,SYSTEM-files' color take priority to DIRECTORY's one.
  • Print with '&'
  • New Icon for Windows (Windows)
  • IME-toggle-key Ctrl-\ (Windows)
  • not use temporary files on pipelines from built-in commands' output.
  • [FIX] Color differed between 'ls' and 'ls -l'
  • [FIX] Command execution was continued when it's redirect failed.

  • Lua 関数で、ファイル名以外の文字列を補完候補に含められるようにした。
  • カラー ls での色の付け方を HIDDEN,SYSTEM を DIRECTORY より優先するようにした
  • & で別セッションで実行する時に、<プロセスID>を表示するようにした。
  • 新アイコンを用意。
  • Ctrl-\ で IME の ON/OFF ができるようにした。(Windows のみ)
  • 内蔵コマンドを介するパイプラインで、一時ファイルを使わないようにした。[蟲繕]
  • color-ls のデフォルト配色が、-l の有無で違ってしまう問題を修正
  • リダイレクト失敗の際に、そのままコマンドが実行されてしまう問題を修正

2.92_1

30 May 15:32

Choose a tag to compare

  • Fix the problem Lua-object nyaos.filter was not called.

  • nyaos.filter が効かなくなっていた不具合を修正

2.91_0

30 May 15:32

Choose a tag to compare

  • add ls a new option --color which force output colored.
  • interpret Lua code when script-file begins '--' loaded 'source' and_nya
  • remove command: list,xptest,echoerr
  • rename command: print -> echo
  • (Windows) add nyaos's option -t which disable to control consoledirectly and use ANSI escape sequence.

  • ls に色出力制御オプション --color を追加
  • _nya や source で読み込まれるファイルの中身が「--」で始まっていたら、全て Lua コードと解釈するようにした。
  • 内蔵コマンドの print を echo へ改名
  • xptest , list(lsの旧名) , echoerr の廃止(Windows)
  • コンソールの直接コントロールを抑制し、ANSIエスケープシーケンスを出力するオプション -t を追加

2.90_1

30 May 15:32

Choose a tag to compare

  • (OS/2)* Fix: could not execute PM applications.

(OS/2)[蟲繕]

  • PMアプリケーションが起動できなかった問題を修正した。

2.90_0

30 May 15:32

Choose a tag to compare

  • update Japanese document(nyaos.txt)
  • assign version number as '2.90_0'
  • improve packaging script(mkpack.cmd)

  • 正式バージョンナンバー付与
  • ドキュメント再整備(統一)
  • パッケージングスクリプト再作成

3.3.8_4

30 May 06:33

Choose a tag to compare

  • Fix the bug to regard the second byte of Double-Bytes-Charactor's 0x5E as the escape-charactor ^ . (Thanks to Akinori Hattori)

  • 漢字の 2 バイト目の 0x5E を ^ と認識してしまう問題を修正 (Thanks to Akinori Hattori)

3.3.8_3

30 May 06:35

Choose a tag to compare

  • <COMObject>:__get__ method to property with parameter because they can not be refer like function.
  • Say message when gpath.lua failed.

  • COM の引数付きプロパティー参照を関数風に呼び出せない(引数が渡らない)
    問題の暫定対応のため、get を用意
  • gpath.lua で、非管理者で実行した時など、設定失敗した場合にエラーメッセージを出すようにした。