Skip to content

Commit

Permalink
v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
idozahavy committed Nov 8, 2020
1 parent 9d0e3e4 commit e5f8f37
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 2 deletions.
6 changes: 5 additions & 1 deletion EduToolkit/EduToolkit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>1</ApplicationRevision>
<ApplicationRevision>4</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
Expand Down Expand Up @@ -126,6 +126,10 @@
<Project>{2ab40003-cabd-4364-8690-3fe61b381a4c}</Project>
<Name>JsonViewer</Name>
</ProjectReference>
<ProjectReference Include="..\..\SentencesToImages\SentencesToImages\SentencesToImages.csproj">
<Project>{ac9007b5-0aa9-44e5-bd72-2dec615304e0}</Project>
<Name>SentencesToImages</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.6.1">
Expand Down
6 changes: 6 additions & 0 deletions EduToolkit/EduToolkit.sln
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlipDirPics", "..\..\FlipDi
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsonViewer", "..\..\JsonViewer\JsonViewer\JsonViewer.csproj", "{2AB40003-CABD-4364-8690-3FE61B381A4C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SentencesToImages", "..\..\SentencesToImages\SentencesToImages\SentencesToImages.csproj", "{AC9007B5-0AA9-44E5-BD72-2DEC615304E0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -33,6 +35,10 @@ Global
{2AB40003-CABD-4364-8690-3FE61B381A4C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2AB40003-CABD-4364-8690-3FE61B381A4C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2AB40003-CABD-4364-8690-3FE61B381A4C}.Release|Any CPU.Build.0 = Release|Any CPU
{AC9007B5-0AA9-44E5-BD72-2DEC615304E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AC9007B5-0AA9-44E5-BD72-2DEC615304E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AC9007B5-0AA9-44E5-BD72-2DEC615304E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AC9007B5-0AA9-44E5-BD72-2DEC615304E0}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
15 changes: 14 additions & 1 deletion EduToolkit/ToolkitSelector.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions EduToolkit/ToolkitSelector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,10 @@ private void jsonViewerButton_Click(object sender, EventArgs e)
{
ApplicationQueue.InstanceAddFormQueue(new JsonViewer.JsonLoader());
}

private void SentencesToImagesButton_Click(object sender, EventArgs e)
{
ApplicationQueue.InstanceAddFormQueue(new SentencesToImages.Form1());
}
}
}

0 comments on commit e5f8f37

Please sign in to comment.