Skip to content
This repository has been archived by the owner on Jan 13, 2023. It is now read-only.

Commit

Permalink
🔖发布0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kitUIN committed Jun 13, 2022
1 parent 1ee9f5e commit a1a4f56
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion BikaClient.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>BikaClient</id>
<version>0.9.4</version>
<version>0.9.5</version>
<title>BikaClient</title>
<authors>kitUIN</authors>
<owners>kitUIN</owners>
Expand Down
6 changes: 3 additions & 3 deletions BikaClient/Blocks/Blocks.CategoriesBlock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace winrt::BikaClient::Blocks::implementation
void CategoriesBlock::Init(winrt::Windows::Data::Json::JsonObject const& json)
{
m_json = json.Stringify();
if (json.HasKey(L"_id")) Id(json.GetNamedString(L"_id"));
if (json.HasKey(L"_id")) ID(json.GetNamedString(L"_id"));
if (json.HasKey(L"title")) Title(json.GetNamedString(L"title"));
if (json.HasKey(L"description")) Description(json.GetNamedString(L"description"));
if (json.HasKey(L"active")) Active(json.GetNamedBoolean(L"active"));
Expand Down Expand Up @@ -45,11 +45,11 @@ namespace winrt::BikaClient::Blocks::implementation
m_thumb = value;
m_propertyChanged(*this, Windows::UI::Xaml::Data::PropertyChangedEventArgs{ L"Thumb" });
}
hstring CategoriesBlock::Id()
hstring CategoriesBlock::ID()
{
return m_id;
}
void CategoriesBlock::Id(hstring const& value)
void CategoriesBlock::ID(hstring const& value)
{
m_id = value;
m_propertyChanged(*this, Windows::UI::Xaml::Data::PropertyChangedEventArgs{ L"Id" });
Expand Down
4 changes: 2 additions & 2 deletions BikaClient/Blocks/Blocks.CategoriesBlock.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ namespace winrt::BikaClient::Blocks::implementation
void Title(hstring const& value);
winrt::BikaClient::Blocks::ImageBlock Thumb();
void Thumb(winrt::BikaClient::Blocks::ImageBlock const& value);
hstring Id();
void Id(hstring const& value);
hstring ID();
void ID(hstring const& value);
bool IsWeb();
void IsWeb(bool const& value);
bool IsAuto();
Expand Down
2 changes: 1 addition & 1 deletion BikaClient/Blocks/Blocks.idl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ namespace BikaClient.Blocks
CategoriesBlock(Windows.Data.Json.JsonObject json,String fileServer);
String Title;
BikaClient.Blocks.ImageBlock Thumb;
String Id;
String ID;
Boolean IsWeb;
Boolean IsAuto;
Boolean Active;
Expand Down

0 comments on commit a1a4f56

Please sign in to comment.