Skip to content

Commit

Permalink
[共通] update
Browse files Browse the repository at this point in the history
  • Loading branch information
Reputeless committed Feb 2, 2024
1 parent c21f155 commit 4bd5868
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Siv3D/include/Siv3D/Version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# define SIV3D_VERSION_MINOR 6

/// @brief ライブラリのリビジョンバージョン | Library revision version
# define SIV3D_VERSION_REVISION 13
# define SIV3D_VERSION_REVISION 14

/// @brief プレリリースタグ | Pre-release tag
# define SIV3D_VERSION_PRERELEASE_TAG U""
Expand All @@ -27,10 +27,10 @@
# define SIV3D_VERSION ((SIV3D_VERSION_MAJOR * 100 * 100) + (SIV3D_VERSION_MINOR * 100) + (SIV3D_VERSION_REVISION))

/// @brief ライブラリのバージョンの文字列(簡易版) | Short Library version
# define SIV3D_VERSION_SHORT_STRING U"0.6.13"
# define SIV3D_VERSION_SHORT_STRING U"0.6.14"

/// @brief ライブラリのバージョンの文字列 | Library version
# define SIV3D_VERSION_STRING U"0.6.13" SIV3D_VERSION_PRERELEASE_TAG
# define SIV3D_VERSION_STRING U"0.6.14" SIV3D_VERSION_PRERELEASE_TAG

/// @brief ライブラリのバージョン名 | Library version name
# define SIV3D_VERSION_NAME U"Siv3D November 2023"
# define SIV3D_VERSION_NAME U"Siv3D February 2024"
2 changes: 1 addition & 1 deletion Siv3D/src/Siv3D/OpenAI/SivOpenAIVision.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ namespace s3d
{
ImageData ImageData::FromURL(const URLView url)
{
return ImageData{ URL{ url } };
return ImageData{ URL{ url }, std::string{} };
}

ImageData ImageData::Base64FromFile(const FilePathView path)
Expand Down

0 comments on commit 4bd5868

Please sign in to comment.