Skip to content

Commit

Permalink
- fix bug in exporting save
Browse files Browse the repository at this point in the history
- add dutch and german translation
  • Loading branch information
duchuule committed Oct 13, 2015
1 parent 3e5653e commit 810e067
Show file tree
Hide file tree
Showing 7 changed files with 1,388 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ExportPage.xaml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ void ExportPage::exportOneDrivebtn_Click(Platform::Object^ sender, Windows::UI::
Search::QueryOptions ^options = ref new Search::QueryOptions();
options->FileTypeFilter->Append("*");
options->IndexerOption = Search::IndexerOption::DoNotUseIndexer;
options->UserSearchFilter = entry->DisplayName;
options->UserSearchFilter = "\"" + entry->DisplayName + "\"";
create_task(entry->Folder->CreateFileQueryWithOptions(options)->GetFilesAsync())
.then([this, loader](IVectorView<StorageFile ^> ^files)
{
Expand Down
4 changes: 4 additions & 0 deletions HelpPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@
<LineBreak />
<Run Text="- Simon Kudsk for Danish translation."/>
<LineBreak />
<Run Text="- Gijs Hoedemaker for Dutch translation."/>
<LineBreak />
<Run Text="- Matthias Tomasetig for German translation."/>
<LineBreak />
<LineBreak />
<Run Text="The author is not responsible for any illegal use of this software. Further more, there is no warranty for this software and the author is not liable for any damages."/>
<LineBreak/>
Expand Down
2 changes: 1 addition & 1 deletion Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="16994Sparksoft.VBA10" Publisher="CN=9289A21E-3389-49E2-A9E0-46AA1289C3CB" Version="1.21.193.0" />
<Identity Name="16994Sparksoft.VBA10" Publisher="CN=9289A21E-3389-49E2-A9E0-46AA1289C3CB" Version="1.21.194.0" />
<mp:PhoneIdentity PhoneProductId="2b9558e5-6253-426c-8989-3284f508e743" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>VBA10</DisplayName>
Expand Down
Loading

0 comments on commit 810e067

Please sign in to comment.