Skip to content

Releases: 98teg/NativeDialogs

v2.2.1 - Fix setting root subfolder from the editor

03 Dec 12:05
71ff74b
Compare
Choose a tag to compare

Fixes

  • Fix setting root subfolder from the editor

v2.2.0 - Godot 4.1 support

29 Jul 07:49
0009bbf
Compare
Choose a tag to compare

Features

  • Add Godot 4.1 support.
  • Add node icons.

v2.1.0 - Improve signals

12 Mar 18:51
Compare
Choose a tag to compare

Features

  • Add a new canceled signal to NativeFileDialog. It is emitted whenever the user doesn't select any file.

Fixes

  • NativeFileDialog's FILE_MODE_OPEN_FILE didn't emit file_selected, it emitted files_selected instead.
  • Fix various issues in the documentation.

Breaking changes

  • cancelled signals have been renamed to canceled signals.

v2.0.0 - Godot 4.0 support

01 Mar 19:26
a6acb2d
Compare
Choose a tag to compare

Features

The objetive of this update was to bring the plugin's API closer to Godot's equivalent nodes. For that reason, the following changes were made:

  • Merge NativeDialogOpenFile, NativeDialogSaveFile and NativeDialogOpenFolder into NativeFileDialog.
  • Split NativeDialogMessage functionality into NativeAcceptDialog and NativeConfirmationDialog.
  • Rename NativeDialogNotify to NativeNotification.

v1.0.0 - First Release

16 May 18:05
Compare
Choose a tag to compare

Features

Five new native dialogs:

  • NativeDialogMessage: allows you to prompt the user with simple accept-deny dialogs and get their answer.
  • NativeDialogNotify: would show the user a brief message and fade away.
  • NativeDialogOpenFile: returns file paths selected by the user. It only allows existing files.
  • NativeDialogSaveFile: returns file path selected by the user. It allows the user to create a new file.
  • NativeDialogSelectFolder: returns folder path selected by the user.