diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b01a2da --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +*/Bin +*/obj +*/packages/ +*.v12.suo +*.chm +bin/ +obj/ diff --git a/ImageSequencerWP80/ImageSequencer/AboutPage.xaml b/ImageSequencerWP80/ImageSequencer/AboutPage.xaml index e65c2d3..de5b282 100644 --- a/ImageSequencerWP80/ImageSequencer/AboutPage.xaml +++ b/ImageSequencerWP80/ImageSequencer/AboutPage.xaml @@ -1,11 +1,22 @@  true ..\ true - 4f888b28 + 2e6eec39 true @@ -224,6 +224,7 @@ PublicResXFileCodeGenerator AppResources.Designer.cs + Designer @@ -253,13 +254,13 @@ False ImageTools\ImageTools.Utils.dll + + ..\packages\LumiaImagingSDK.2.0.184\lib\wp8\Lumia.Imaging.Managed.dll + ..\packages\WPtoolkit.4.2013.08.16\lib\wp8\Microsoft.Phone.Controls.Toolkit.dll True - - ..\packages\NokiaImagingSDK.1.2.115\lib\wp8\Nokia.Graphics.Imaging.Managed.dll - @@ -271,12 +272,12 @@ --> + + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - + - - \ No newline at end of file diff --git a/ImageSequencerWP80/ImageSequencer/MainPage.xaml.cs b/ImageSequencerWP80/ImageSequencer/MainPage.xaml.cs index f417b7f..1247809 100644 --- a/ImageSequencerWP80/ImageSequencer/MainPage.xaml.cs +++ b/ImageSequencerWP80/ImageSequencer/MainPage.xaml.cs @@ -7,7 +7,7 @@ using System.Windows.Controls; using System.Windows.Navigation; using Microsoft.Phone.Controls; using Microsoft.Phone.Shell; -using Nokia.Graphics.Imaging; +using Lumia.Imaging; using ImageSequencer.Resources; using System.Windows.Threading; using System.Windows.Media; @@ -15,6 +15,7 @@ using System.Windows.Media.Imaging; using System.IO; using System.Threading; using System.Threading.Tasks; +using Lumia.Imaging.Transforms; namespace ImageSequencer { diff --git a/ImageSequencerWP80/ImageSequencer/Resources/AppResources.Designer.cs b/ImageSequencerWP80/ImageSequencer/Resources/AppResources.Designer.cs index 727293b..03672b5 100644 --- a/ImageSequencerWP80/ImageSequencer/Resources/AppResources.Designer.cs +++ b/ImageSequencerWP80/ImageSequencer/Resources/AppResources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34011 +// Runtime Version:4.0.30319.34014 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -61,7 +61,7 @@ namespace ImageSequencer.Resources { } /// - /// Looks up a localized string similar to Image Sequencer is an example application demonstrating the use of Nokia Imaging SDK’s Image Aligner and Gif Renderer APIs for creating cinemagraph-style animations in animated GIF format.. + /// Looks up a localized string similar to Image Sequencer is an example application demonstrating the use of Lumia Imaging SDK’s Image Aligner and Gif Renderer APIs for creating cinemagraph-style animations in animated GIF format.. /// public static string AboutPage_AboutRun { get { diff --git a/ImageSequencerWP80/ImageSequencer/Resources/AppResources.resx b/ImageSequencerWP80/ImageSequencer/Resources/AppResources.resx index 046d6a0..0dff74c 100644 --- a/ImageSequencerWP80/ImageSequencer/Resources/AppResources.resx +++ b/ImageSequencerWP80/ImageSequencer/Resources/AppResources.resx @@ -147,7 +147,7 @@ Sequences - Image Sequencer is an example application demonstrating the use of Nokia Imaging SDK’s Image Aligner and Gif Renderer APIs for creating cinemagraph-style animations in animated GIF format. + Image Sequencer is an example application demonstrating the use of Lumia Imaging SDK’s Image Aligner and Gif Renderer APIs for creating cinemagraph-style animations in animated GIF format. https://github.com/Microsoft/image-sequencer diff --git a/ImageSequencerWP80/ImageSequencer/packages.config b/ImageSequencerWP80/ImageSequencer/packages.config index 9826d4e..003fb8b 100644 --- a/ImageSequencerWP80/ImageSequencer/packages.config +++ b/ImageSequencerWP80/ImageSequencer/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/ImageSequencerWP81/ImageSequencer/AboutPage.xaml b/ImageSequencerWP81/ImageSequencer/AboutPage.xaml index e65c2d3..de5b282 100644 --- a/ImageSequencerWP81/ImageSequencer/AboutPage.xaml +++ b/ImageSequencerWP81/ImageSequencer/AboutPage.xaml @@ -1,11 +1,22 @@  true ..\ true - e4537f96 + b35f5dff en-US @@ -148,6 +148,7 @@ Designer + @@ -242,6 +243,7 @@ PublicResXFileCodeGenerator AppResources.Designer.cs + Designer @@ -271,14 +273,13 @@ False ImageTools\ImageTools.Utils.dll + + ..\packages\LumiaImagingSDK.2.0.184\lib\wp8\Lumia.Imaging.Managed.dll + ..\packages\WPtoolkit.4.2013.08.16\lib\wp8\Microsoft.Phone.Controls.Toolkit.dll True - - False - ..\packages\NokiaImagingSDK.1.2.115\lib\wp8\Nokia.Graphics.Imaging.Managed.dll - @@ -290,12 +291,12 @@ --> + + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - + - - \ No newline at end of file diff --git a/ImageSequencerWP81/ImageSequencer/MainPage.xaml.cs b/ImageSequencerWP81/ImageSequencer/MainPage.xaml.cs index c8459a8..c5e89d5 100644 --- a/ImageSequencerWP81/ImageSequencer/MainPage.xaml.cs +++ b/ImageSequencerWP81/ImageSequencer/MainPage.xaml.cs @@ -6,12 +6,13 @@ using System.Windows.Controls; using System.Windows.Navigation; using Microsoft.Phone.Controls; using Microsoft.Phone.Shell; -using Nokia.Graphics.Imaging; +using Lumia.Imaging; using System.Windows.Threading; using System.Windows.Media; using System.Windows.Media.Imaging; using System.IO; using System.Threading.Tasks; +using Lumia.Imaging.Transforms; namespace ImageSequencer { diff --git a/ImageSequencerWP81/ImageSequencer/Resources/AppResources.Designer.cs b/ImageSequencerWP81/ImageSequencer/Resources/AppResources.Designer.cs index 727293b..03672b5 100644 --- a/ImageSequencerWP81/ImageSequencer/Resources/AppResources.Designer.cs +++ b/ImageSequencerWP81/ImageSequencer/Resources/AppResources.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.34011 +// Runtime Version:4.0.30319.34014 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -61,7 +61,7 @@ namespace ImageSequencer.Resources { } /// - /// Looks up a localized string similar to Image Sequencer is an example application demonstrating the use of Nokia Imaging SDK’s Image Aligner and Gif Renderer APIs for creating cinemagraph-style animations in animated GIF format.. + /// Looks up a localized string similar to Image Sequencer is an example application demonstrating the use of Lumia Imaging SDK’s Image Aligner and Gif Renderer APIs for creating cinemagraph-style animations in animated GIF format.. /// public static string AboutPage_AboutRun { get { diff --git a/ImageSequencerWP81/ImageSequencer/Resources/AppResources.resx b/ImageSequencerWP81/ImageSequencer/Resources/AppResources.resx index 046d6a0..0dff74c 100644 --- a/ImageSequencerWP81/ImageSequencer/Resources/AppResources.resx +++ b/ImageSequencerWP81/ImageSequencer/Resources/AppResources.resx @@ -147,7 +147,7 @@ Sequences - Image Sequencer is an example application demonstrating the use of Nokia Imaging SDK’s Image Aligner and Gif Renderer APIs for creating cinemagraph-style animations in animated GIF format. + Image Sequencer is an example application demonstrating the use of Lumia Imaging SDK’s Image Aligner and Gif Renderer APIs for creating cinemagraph-style animations in animated GIF format. https://github.com/Microsoft/image-sequencer diff --git a/ImageSequencerWP81/ImageSequencer/packages.config b/ImageSequencerWP81/ImageSequencer/packages.config index 431381d..32dc368 100644 --- a/ImageSequencerWP81/ImageSequencer/packages.config +++ b/ImageSequencerWP81/ImageSequencer/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/AboutPage.xaml b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/AboutPage.xaml index 5f13218..1cc9a19 100644 --- a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/AboutPage.xaml +++ b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/AboutPage.xaml @@ -1,11 +1,22 @@  - -Image Sequencer is an example application demonstrating the use of sequence capture together with Nokia Imaging SDK’s Image Aligner and Gif Renderer APIs for creating cinemagraph-style animations in animated GIF format. - - + + + + + + For more information and application source code visit project GitHub repository. diff --git a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/AboutPage.xaml.cs b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/AboutPage.xaml.cs index 331ff12..8d1f6fe 100644 --- a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/AboutPage.xaml.cs +++ b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/AboutPage.xaml.cs @@ -1,6 +1,22 @@ -/** - * Copyright (c) 2013-2014 Microsoft Mobile. - * See the license file delivered with this project for more information. +/* + * Copyright (c) 2014 Microsoft Mobile + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ diff --git a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/App.xaml.cs b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/App.xaml.cs index 26ec277..f8d853b 100644 --- a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/App.xaml.cs +++ b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/App.xaml.cs @@ -1,6 +1,22 @@ -/** - * Copyright (c) 2013-2014 Microsoft Mobile. - * See the license file delivered with this project for more information. +/* + * Copyright (c) 2014 Microsoft Mobile + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ using System; diff --git a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/GifExporter.cs b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/GifExporter.cs index 2f79c70..b4c1e36 100644 --- a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/GifExporter.cs +++ b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/GifExporter.cs @@ -1,4 +1,4 @@ -using Nokia.Graphics.Imaging; +using Lumia.Imaging; using System; using System.Collections.Generic; using System.Linq; @@ -7,7 +7,7 @@ using System.Threading.Tasks; using System.Windows; using System.Runtime.InteropServices.WindowsRuntime; using System.IO; -using Nokia.InteropServices.WindowsRuntime; +using Lumia.InteropServices.WindowsRuntime; using System.Threading; using Windows.Storage; using Windows.Foundation; @@ -15,6 +15,8 @@ using Windows.UI.Xaml.Media.Imaging; using Windows.UI.Xaml.Shapes; using Windows.UI.Xaml.Media; using Windows.UI; +using Lumia.Imaging.Compositing; +using Lumia.Imaging.Transforms; namespace ImageSequencer { diff --git a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/GifPage.xaml.cs b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/GifPage.xaml.cs index af06837..53272ab 100644 --- a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/GifPage.xaml.cs +++ b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/GifPage.xaml.cs @@ -1,6 +1,22 @@ -/** - * Copyright (c) 2013-2014 Microsoft Mobile. - * See the license file delivered with this project for more information. +/* + * Copyright (c) 2014 Microsoft Mobile + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ using ImageSequencer.Common; diff --git a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/ProgressBarHelper.cs b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/ProgressBarHelper.cs index c941a6c..4172143 100644 --- a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/ProgressBarHelper.cs +++ b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/ProgressBarHelper.cs @@ -1,6 +1,22 @@ -/** - * Copyright (c) 2013-2014 Microsoft Mobile. - * See the license file delivered with this project for more information. +/* + * Copyright (c) 2014 Microsoft Mobile + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ using System; diff --git a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/SequenceCapturePage.xaml.cs b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/SequenceCapturePage.xaml.cs index e0c0ad4..c060693 100644 --- a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/SequenceCapturePage.xaml.cs +++ b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/SequenceCapturePage.xaml.cs @@ -1,6 +1,22 @@ -/** - * Copyright (c) 2013-2014 Microsoft Mobile. - * See the license file delivered with this project for more information. +/* + * Copyright (c) 2014 Microsoft Mobile + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ using ImageSequencer.Common; diff --git a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/SequencePreviewPage.xaml.cs b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/SequencePreviewPage.xaml.cs index 5de70c0..5091a1f 100644 --- a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/SequencePreviewPage.xaml.cs +++ b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/SequencePreviewPage.xaml.cs @@ -1,10 +1,27 @@ -/** - * Copyright (c) 2013-2014 Microsoft Mobile. - * See the license file delivered with this project for more information. +/* + * Copyright (c) 2014 Microsoft Mobile + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ using ImageSequencer.Common; -using Nokia.Graphics.Imaging; +using Lumia.Imaging; +using Lumia.Imaging.Transforms; using System; using System.Collections.Generic; using System.Linq; diff --git a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/SequencesPage.xaml.cs b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/SequencesPage.xaml.cs index 5d37a62..8d76152 100644 --- a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/SequencesPage.xaml.cs +++ b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/SequencesPage.xaml.cs @@ -1,6 +1,22 @@ -/** - * Copyright (c) 2013-2014 Microsoft Mobile. - * See the license file delivered with this project for more information. +/* + * Copyright (c) 2014 Microsoft Mobile + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ using System; diff --git a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/VideoPreviewCapturePage.xaml.cs b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/VideoPreviewCapturePage.xaml.cs index 1ba630e..a410606 100644 --- a/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/VideoPreviewCapturePage.xaml.cs +++ b/ImageSequencerWindows/ImageSequencer/ImageSequencer.Shared/VideoPreviewCapturePage.xaml.cs @@ -1,10 +1,26 @@ -/** - * Copyright (c) 2013-2014 Microsoft Mobile. - * See the license file delivered with this project for more information. +/* + * Copyright (c) 2014 Microsoft Mobile + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. */ using ImageSequencer.Common; -using Nokia.Graphics.Imaging; +using Lumia.Imaging; using System; using System.Collections.Generic; using System.Threading.Tasks; diff --git a/ImageSequencerWindows/ImageSequencer/ImageSequencer.WindowsPhone/ImageSequencer.WindowsPhone.csproj b/ImageSequencerWindows/ImageSequencer/ImageSequencer.WindowsPhone/ImageSequencer.WindowsPhone.csproj index 3ae5ba8..8b0a51e 100644 --- a/ImageSequencerWindows/ImageSequencer/ImageSequencer.WindowsPhone/ImageSequencer.WindowsPhone.csproj +++ b/ImageSequencerWindows/ImageSequencer/ImageSequencer.WindowsPhone/ImageSequencer.WindowsPhone.csproj @@ -15,7 +15,7 @@ 512 {76F1466A-8B6D-4E39-A767-685A06062A39};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} true - 381aca59 + eee996b2 True arm @@ -108,7 +108,7 @@ - + @@ -119,12 +119,12 @@ - + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - +