Skip to content

Commit

Permalink
- Fixed: Updated plugin does not refresh in the UI (still happens in …
Browse files Browse the repository at this point in the history
…the Browse tab)

- Fixed: Occasional error when updating a Plugin
- Misc: Reorganized Template plugin
  • Loading branch information
alexis- committed Mar 18, 2020
1 parent 3d4d546 commit e142def
Show file tree
Hide file tree
Showing 35 changed files with 169 additions and 463 deletions.
9 changes: 7 additions & 2 deletions ChangeLogs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT UNLESS YOU KNOW WHAT YOU ARE DOING.
# CHANGE LOG

[Next version (0496c9f6a7e164b44b665f94495da2b376bf68bc)]
[Next version (3d4d54688e1b3390524525d1f443b88d6e470ea4)]
- Added: SuperMemo 18.04 compatibility #138
- Added: automated ChangeLog and NuPkg Release notes #52
- Added: Splash screen (also overrides SuperMemo's) #100
Expand All @@ -21,9 +21,14 @@
- Added CfgBase with reset on cancel
- Added automatic version configuration
- Added more documentation
- Updated: ChangeLogs
- Updated: ChangeLogs is now an embedded resource
- Updated: NuSpec dependencies version
- Updated: Packages
- Updated: ChangeLogs
- Fixed: Change Log window now displays correctly
- Fixed: Wrong offsets for Hook and Concept in NativeDataCfg.json
- Fixed: Collection Selection > Options, and other option windows can now be canceled and revert changes #117
- Misc: Cleaned up SMAInstaller from legacy Change Log code
- Several other minor updates


Expand Down
373 changes: 8 additions & 365 deletions SuperMemoAssistant.sln

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion libs/MSBuild.Tools
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,22 @@
- Added CfgBase with reset on cancel
- Added automatic version configuration
- Added more documentation
- Updated: ChangeLogs
- Updated: ChangeLogs is now an embedded resource
- Updated: NuSpec dependencies version
- Updated: Packages
- Updated: ChangeLogs
- Fixed: Change Log window now displays correctly
- Fixed: Wrong offsets for Hook and Concept in NativeDataCfg.json
- Fixed: Collection Selection > Options, and other option windows can now be canceled and revert changes #117
- Misc: Cleaned up SMAInstaller from legacy Change Log code
- Several other minor updates
</releaseNotes>
</metadata>
<files>
<file src="*.*" target="lib\net45\" exclude="*.pdb;*.nupkg;*.vshost.*" />
<file src="SuperMemoAssistant*.pdb" target="lib\net45\" />
<file src="PluginManager*.pdb" target="lib\net45\" />
<file src="Process.NET*.pdb" target="lib\net45\" />
<file src="Squirrel*.pdb" target="lib\net45\" />
</files>
</package>
4 changes: 2 additions & 2 deletions src/AppHosts/SuperMemoAssistant/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.3.432")]
[assembly: AssemblyFileVersion("2.0.3.432")]
[assembly: AssemblyVersion("2.0.3.450")]
[assembly: AssemblyFileVersion("2.0.3.450")]

[assembly: AssemblyInformationalVersion("2.0.3")]
6 changes: 4 additions & 2 deletions src/AppHosts/SuperMemoAssistant/SuperMemoAssistant.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -299,15 +299,17 @@
<Version>2.1.0</Version>
</PackageReference>
<PackageReference Include="MSBuild.Tools">
<Version>0.2.38</Version>
<Version>0.2.40</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="NuGet.CommandLine">
<Version>5.4.0</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="PluginManager.Core">
<Version>0.2.1.104</Version>
<Version>0.2.1.110</Version>
</PackageReference>
<PackageReference Include="PropertyChanged.Fody">
<Version>3.2.6</Version>
Expand Down
4 changes: 2 additions & 2 deletions src/Core/SuperMemoAssistant.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.3.283")]
[assembly: AssemblyFileVersion("2.0.3.283")]
[assembly: AssemblyVersion("2.0.3.297")]
[assembly: AssemblyFileVersion("2.0.3.297")]

[assembly: AssemblyInformationalVersion("2.0.3")]
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,8 @@ private async Task PluginUpdate(LocalPluginPackage<PluginMetadata> plugin)
CancellationTokenSource.Token)
.ConfigureAwait(true)) == false)
return;

await PluginMgr.StartPlugin(PluginInstances.FirstOrDefault(pi => pi.Package == plugin)).ConfigureAwait(true);
}
catch (InvalidOperationException ex1) when (ex1.InnerException is NuGetProtocolException)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,11 @@
<PackageReference Include="FlaUI.UIA3">
<Version>2.0.0-rc1</Version>
</PackageReference>
<PackageReference Include="Fody">
<Version>6.1.1</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="FontAwesome5">
<Version>2.0.4</Version>
</PackageReference>
Expand All @@ -403,7 +408,7 @@
<Version>3.3.2</Version>
</PackageReference>
<PackageReference Include="PluginManager.Core">
<Version>0.2.1.104</Version>
<Version>0.2.1.110</Version>
</PackageReference>
<PackageReference Include="PropertyChanged.Fody">
<Version>3.2.6</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.3.41")]
[assembly: AssemblyFileVersion("2.0.3.41")]
[assembly: AssemblyVersion("2.0.3.49")]
[assembly: AssemblyFileVersion("2.0.3.49")]

[assembly: AssemblyInformationalVersion("2.0.3")]
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.3.45")]
[assembly: AssemblyFileVersion("2.0.3.45")]
[assembly: AssemblyVersion("2.0.3.53")]
[assembly: AssemblyFileVersion("2.0.3.53")]

[assembly: AssemblyInformationalVersion("2.0.3")]
40 changes: 40 additions & 0 deletions src/Core/SuperMemoAssistant.Interop/Extensions/FileDialogEx.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Win32;
using SuperMemoAssistant.Services;

namespace SuperMemoAssistant.Extensions
{
/// <summary>
/// Extension methods for <see cref="FileDialog" />
/// </summary>
public static class FileDialogEx
{
/// <summary>
/// Shows the dialog with <paramref name="ownerHwnd"/> as the owner
/// </summary>
/// <param name="dlg">The dialog to show</param>
/// <param name="ownerHwnd">The owner window</param>
/// <returns>Dialog result</returns>
public static bool RunDialog(this FileDialog dlg, IntPtr ownerHwnd)
{
return (bool)dlg.GetType()
.GetMethod("RunDialog", BindingFlags.NonPublic | BindingFlags.Instance)
.Invoke(dlg, new object[] { ownerHwnd });
}

/// <summary>
/// Shows the dialog with SuperMemo Element window as the owner
/// </summary>
/// <param name="dlg">The dialog to show</param>
/// <returns>Dialog result</returns>
public static bool RunDialogInSuperMemo(this FileDialog dlg)
{
return dlg.RunDialog(Svc.SM.UI.ElementWdw.Handle);
}
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" InitialTargets="MSBuildToolsReadSuo">
<Import Project="..\..\..\packages\MSBuild.Tools.0.2.38\build\MSBuild.Tools.props" Condition="Exists('..\..\..\packages\MSBuild.Tools.0.2.38\build\MSBuild.Tools.props')" />
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\..\packages\MSBuild.Tools.0.2.40\build\MSBuild.Tools.props" Condition="Exists('..\..\..\packages\MSBuild.Tools.0.2.40\build\MSBuild.Tools.props')" />
<Import Project="..\..\..\packages\PropertyChanged.Fody.3.2.6\build\PropertyChanged.Fody.props" Condition="Exists('..\..\..\packages\PropertyChanged.Fody.3.2.6\build\PropertyChanged.Fody.props')" />
<Import Project="..\..\..\packages\Anotar.Serilog.Fody.5.1.0\build\Anotar.Serilog.Fody.props" Condition="Exists('..\..\..\packages\Anotar.Serilog.Fody.5.1.0\build\Anotar.Serilog.Fody.props')" />
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
Expand Down Expand Up @@ -160,6 +160,7 @@
<Compile Include="Extensions\DependencyObjectEx.cs" />
<Compile Include="Extensions\ElemCreationResultEx.cs" />
<Compile Include="Extensions\EnumEx.cs" />
<Compile Include="Extensions\FileDialogEx.cs" />
<Compile Include="Extensions\GroupCollectionEx.cs" />
<Compile Include="Extensions\IControlHtmlEx.cs" />
<Compile Include="Extensions\ImageEx.cs" />
Expand Down Expand Up @@ -395,9 +396,9 @@
<Error Condition="!Exists('..\..\..\packages\Anotar.Serilog.Fody.5.1.0\build\Anotar.Serilog.Fody.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Anotar.Serilog.Fody.5.1.0\build\Anotar.Serilog.Fody.props'))" />
<Error Condition="!Exists('..\..\..\packages\PropertyChanged.Fody.3.2.6\build\PropertyChanged.Fody.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\PropertyChanged.Fody.3.2.6\build\PropertyChanged.Fody.props'))" />
<Error Condition="!Exists('..\..\..\packages\Fody.6.1.1\build\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Fody.6.1.1\build\Fody.targets'))" />
<Error Condition="!Exists('..\..\..\packages\MSBuild.Tools.0.2.38\build\MSBuild.Tools.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\MSBuild.Tools.0.2.38\build\MSBuild.Tools.props'))" />
<Error Condition="!Exists('..\..\..\packages\MSBuild.Tools.0.2.38\build\MSBuild.Tools.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\MSBuild.Tools.0.2.38\build\MSBuild.Tools.targets'))" />
<Error Condition="!Exists('..\..\..\packages\MSBuild.Tools.0.2.40\build\MSBuild.Tools.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\MSBuild.Tools.0.2.40\build\MSBuild.Tools.props'))" />
<Error Condition="!Exists('..\..\..\packages\MSBuild.Tools.0.2.40\build\MSBuild.Tools.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\MSBuild.Tools.0.2.40\build\MSBuild.Tools.targets'))" />
</Target>
<Import Project="..\..\..\packages\Fody.6.1.1\build\Fody.targets" Condition="Exists('..\..\..\packages\Fody.6.1.1\build\Fody.targets')" />
<Import Project="..\..\..\packages\MSBuild.Tools.0.2.38\build\MSBuild.Tools.targets" Condition="Exists('..\..\..\packages\MSBuild.Tools.0.2.38\build\MSBuild.Tools.targets')" />
<Import Project="..\..\..\packages\MSBuild.Tools.0.2.40\build\MSBuild.Tools.targets" Condition="Exists('..\..\..\packages\MSBuild.Tools.0.2.40\build\MSBuild.Tools.targets')" />
</Project>
2 changes: 1 addition & 1 deletion src/Core/SuperMemoAssistant.Interop/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package id="Anotar.Serilog.Fody" version="5.1.0" targetFramework="net472" />
<package id="Extensions.System.IO" version="0.1.0.3" targetFramework="net472" />
<package id="Fody" version="6.1.1" targetFramework="net472" developmentDependency="true" />
<package id="MSBuild.Tools" version="0.2.38" targetFramework="net472" />
<package id="MSBuild.Tools" version="0.2.40" targetFramework="net472" developmentDependency="true" />
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="net472" />
<package id="Nito.AsyncEx" version="5.0.0" targetFramework="net472" />
<package id="Nito.AsyncEx.Context" version="5.0.0" targetFramework="net472" />
Expand Down
2 changes: 1 addition & 1 deletion src/Plugins/SuperMemoAssistant.Plugins.Import
Submodule SuperMemoAssistant.Plugins.Import updated 44 files
+5 −5 libs/SuperMemoAssistant.Plugins.Import.Interop/SuperMemoAssistant.Plugins.Import.Interop.csproj
+1 −1 libs/SuperMemoAssistant.Plugins.Import.Interop/packages.config
+0 −0 src/SuperMemoAssistant.Plugins.Import/Configs/CategoryFilter.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Configs/FeedCfg.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Configs/FeedsCfg.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Configs/ImportCollectionCfg.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Configs/WebsiteCfg.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Configs/WebsitesCfg.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Extensions/DynamicStringEx.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Extensions/FeedCfgEx.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Extensions/FeedItemEx.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Extensions/HttpEx.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Extensions/WebsiteCfgEx.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Extensions/WebsitesCfgEx.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/FodyWeavers.xml
+0 −0 src/SuperMemoAssistant.Plugins.Import/FodyWeavers.xsd
+0 −0 src/SuperMemoAssistant.Plugins.Import/ImportApp.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/ImportBrowserManager.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/ImportPlugin.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/ImportPluginService.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Models/Browser/ImportTab.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Models/Browser/ImportTabs.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Models/Browser/RemoteBrowser.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Models/Feeds/FeedData.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Models/Feeds/FeedItemExt.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Models/Feeds/FeedList.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Models/FilterMode.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Models/ImportType.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Models/UI/IImportControl.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Properties/AssemblyInfo.cs
+78 −78 src/SuperMemoAssistant.Plugins.Import/SuperMemoAssistant.Plugins.Import.csproj
+0 −0 src/SuperMemoAssistant.Plugins.Import/Tasks/FeedsImporter.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/Tasks/WebImporter.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/UI/FeedsDataTemplate.xaml
+0 −0 src/SuperMemoAssistant.Plugins.Import/UI/FeedsImportWindow.xaml
+0 −0 src/SuperMemoAssistant.Plugins.Import/UI/FeedsImportWindow.xaml.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/UI/WebImport.Browser.xaml
+0 −0 src/SuperMemoAssistant.Plugins.Import/UI/WebImport.Browser.xaml.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/UI/WebImport.Urls.xaml
+0 −0 src/SuperMemoAssistant.Plugins.Import/UI/WebImport.Urls.xaml.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/UI/WebImport.Window.xaml
+0 −0 src/SuperMemoAssistant.Plugins.Import/UI/WebImport.Window.xaml.cs
+0 −0 src/SuperMemoAssistant.Plugins.Import/app.config
+1 −1 src/SuperMemoAssistant.Plugins.Import/packages.config
2 changes: 1 addition & 1 deletion src/Plugins/SuperMemoAssistant.Plugins.PDF
Submodule SuperMemoAssistant.Plugins.PDF updated 58 files
+0 −1 Pdf.Net.SDK.licx
+0 −358 SuperMemoAssistant.Plugins.PDF.csproj
+ icudt.dll
+1 −1 libs/Patagames.Pdf.Wpf
+0 −57 packages.config
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Converters/GreaterConverter.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Converters/LessOrEqualConverter.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Extensions/FS_COLOREx.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Extensions/FS_RECTFEx.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Extensions/PdfBookmarkCollectionsEx.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Extensions/PdfBookmarkEx.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Extensions/SelectInfoEx.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/FodyWeavers.xml
+29 −29 src/SuperMemoAssistant.Plugins.PDF/FodyWeavers.xsd
+0 −0 src/SuperMemoAssistant.Plugins.PDF/MathPix/MathPix.html
+0 −0 src/SuperMemoAssistant.Plugins.PDF/MathPix/MathPixAPI.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/MathPix/TeXEditorWindow.xaml
+0 −0 src/SuperMemoAssistant.Plugins.PDF/MathPix/TeXEditorWindow.xaml.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Models/ExtractFormat.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Models/ITextContent.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Models/PDFAreaSelection.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Models/PDFCfg.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Models/PDFImageExtract.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Models/PDFPageSelection.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Models/PDFTextExtract.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Models/PDFTextSelection.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDF/PDFElement.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDF/PDFState.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDF/PDFWindow.xaml
+13 −2 src/SuperMemoAssistant.Plugins.PDF/PDF/PDFWindow.xaml.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDF/ToolBars/PdfToolBarPageMargin.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDF/Viewer/IPDFViewer.Inputs.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDF/Viewer/IPDFViewer.Rendering.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDF/Viewer/IPDFViewer.Selection.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDF/Viewer/IPDFViewer.SuperMemo.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDF/Viewer/IPDFViewer.Utils.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDF/Viewer/IPDFViewer.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDFConst.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDFHotKeys.cs
+45 −0 src/SuperMemoAssistant.Plugins.PDF/PDFLicense.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/PDFPlugin.cs
+2 −2 src/SuperMemoAssistant.Plugins.PDF/Properties/AssemblyInfo.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Properties/Resources.Designer.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Properties/Resources.resx
+ src/SuperMemoAssistant.Plugins.PDF/Resources/PDF-ViewModes.png
+ src/SuperMemoAssistant.Plugins.PDF/Resources/SMA-Incremental-PDF.jpg
+ src/SuperMemoAssistant.Plugins.PDF/Resources/collapseAll.png
+ src/SuperMemoAssistant.Plugins.PDF/Resources/expandAll.png
+ src/SuperMemoAssistant.Plugins.PDF/Resources/pageMargin.png
+ src/SuperMemoAssistant.Plugins.PDF/Resources/sideBarBookmark.png
+250 −0 src/SuperMemoAssistant.Plugins.PDF/SuperMemoAssistant.Plugins.PDF.csproj
+2 −2 src/SuperMemoAssistant.Plugins.PDF/SuperMemoAssistant.Plugins.PDF.nuspec
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Utils/Web/HtmlBuilder.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Utils/Web/HtmlStyle.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Utils/Web/HtmlTag.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/Utils/Web/HtmlTagSpan.cs
+0 −0 src/SuperMemoAssistant.Plugins.PDF/app.config
+ x86/pdfium.dll
Loading

0 comments on commit e142def

Please sign in to comment.