(
251 | // this, "StrokeThickness", BindingMode.OneWay).ValueChanged +=
252 | // OnStrokeThicknessChanged;
253 | }
254 |
255 | private void OnStrokeThicknessChanged(object sender, double e)
256 | {
257 | UpdatePath();
258 | }
259 |
260 | private void OnSizeChanged(object sender, SizeChangedEventArgs sizeChangedEventArgs)
261 | {
262 | UpdatePath();
263 | }
264 |
265 | ///
266 | /// Suspends path updates until EndUpdate is called;
267 | ///
268 | public void BeginUpdate()
269 | {
270 | _isUpdating = true;
271 | }
272 |
273 | ///
274 | /// Resumes immediate path updates every time a component property value changes. Updates the path.
275 | ///
276 | public void EndUpdate()
277 | {
278 | _isUpdating = false;
279 | UpdatePath();
280 | }
281 |
282 | private void UpdatePath()
283 | {
284 | var innerRadius = InnerRadius + StrokeThickness / 2;
285 | var outerRadius = Radius - StrokeThickness / 2;
286 |
287 | if (_isUpdating ||
288 | ActualWidth == 0 ||
289 | innerRadius <= 0 ||
290 | outerRadius < innerRadius)
291 | {
292 | return;
293 | }
294 |
295 | var center =
296 | Center ??
297 | new Point(
298 | outerRadius + StrokeThickness / 2,
299 | outerRadius + StrokeThickness / 2);
300 |
301 | if (EndAngle > 0 && EndAngle < 360)
302 | {
303 | var pathGeometry = new PathGeometry();
304 | var pathFigure = new PathFigure();
305 | pathFigure.IsClosed = true;
306 |
307 | // Starting Point
308 | pathFigure.StartPoint =
309 | new Point(
310 | center.X + Math.Sin(StartAngle * Math.PI / 180) * innerRadius,
311 | center.Y - Math.Cos(StartAngle * Math.PI / 180) * innerRadius);
312 |
313 | // Inner Arc
314 | var innerArcSegment = new ArcSegment();
315 | innerArcSegment.IsLargeArc = (EndAngle - StartAngle) >= 180.0;
316 | innerArcSegment.Point =
317 | new Point(
318 | center.X + Math.Sin(EndAngle * Math.PI / 180) * innerRadius,
319 | center.Y - Math.Cos(EndAngle * Math.PI / 180) * innerRadius);
320 | innerArcSegment.Size = new Size(innerRadius, innerRadius);
321 | innerArcSegment.SweepDirection = SweepDirection.Clockwise;
322 |
323 | var lineSegment =
324 | new LineSegment
325 | {
326 | Point = new Point(
327 | center.X + Math.Sin(EndAngle * Math.PI / 180) * outerRadius,
328 | center.Y - Math.Cos(EndAngle * Math.PI / 180) * outerRadius)
329 | };
330 |
331 | // Outer Arc
332 | var outerArcSegment = new ArcSegment();
333 | outerArcSegment.IsLargeArc = (EndAngle - StartAngle) >= 180.0;
334 | outerArcSegment.Point =
335 | new Point(
336 | center.X + Math.Sin(StartAngle * Math.PI / 180) * outerRadius,
337 | center.Y - Math.Cos(StartAngle * Math.PI / 180) * outerRadius);
338 | outerArcSegment.Size = new Size(outerRadius, outerRadius);
339 | outerArcSegment.SweepDirection = SweepDirection.Counterclockwise;
340 |
341 | pathFigure.Segments.Add(innerArcSegment);
342 | pathFigure.Segments.Add(lineSegment);
343 | pathFigure.Segments.Add(outerArcSegment);
344 | pathGeometry.Figures.Add(pathFigure);
345 |
346 | InvalidateArrange();
347 | Data = pathGeometry;
348 | }
349 | else if (EndAngle == 360)
350 | {
351 | var geometry = new GeometryGroup();
352 | geometry.FillRule = FillRule.EvenOdd;
353 |
354 | var innerSegment = new EllipseGeometry();
355 | innerSegment.Center = center;
356 | innerSegment.RadiusX = innerRadius;
357 | innerSegment.RadiusY = innerRadius;
358 |
359 | var outerSegment = new EllipseGeometry();
360 | outerSegment.Center = center;
361 | outerSegment.RadiusX = outerRadius;
362 | outerSegment.RadiusY = outerRadius;
363 |
364 | geometry.Children.Add(innerSegment);
365 | geometry.Children.Add(outerSegment);
366 |
367 | InvalidateArrange();
368 | Data = geometry;
369 |
370 | return;
371 | }
372 | }
373 | }
374 | }
--------------------------------------------------------------------------------
/MGSBlur/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("XamlBrewer.Uwp.Controls")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("XamlBrewer.Uwp.Controls")]
13 | [assembly: AssemblyCopyright("Copyright © 2016")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Version information for an assembly consists of the following four values:
18 | //
19 | // Major Version
20 | // Minor Version
21 | // Build Number
22 | // Revision
23 | //
24 | // You can specify all the values or you can default the Build and Revision Numbers
25 | // by using the '*' as shown below:
26 | // [assembly: AssemblyVersion("1.0.*")]
27 | [assembly: AssemblyVersion("1.0.0.0")]
28 | [assembly: AssemblyFileVersion("1.0.0.0")]
29 | [assembly: ComVisible(false)]
--------------------------------------------------------------------------------
/MGSBlur/Properties/XamlBrewer.Uwp.Controls.rd.xml:
--------------------------------------------------------------------------------
1 |
2 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
Winsta
5 |
6 |
7 | Unofficial Instagram client for Windows 10 devices.
8 |
9 | Insiders chat
10 | ·
11 | Nightly builds
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | ## Installation
25 |
26 | 1. First download our latest insider build from [App center](https://install.appcenter.ms/orgs/mahstudio-u5ev/apps/winsta/distribution_groups/insiders) or [Github release](https://github.com/MahStudio/Winsta/releases/latest).
27 | 2. Follow [these instructions](https://www.maketecheasier.com/install-appx-files-windows-10/) and install the appx package.
28 |
29 | [DOWNLOAD CERTIFICATE](https://github.com/MahStudio/Winsta/raw/master/UnofficialInstagram_1.1.3.0_x86_ARM.cer)
30 |
31 | ### FAQ
32 |
33 | > I have installation problems related to certificate.
34 |
35 | Use [Colin Kiama's Easy Cert install](https://github.com/colinkiama/EasyCertInstall) and install the certificate.
36 |
37 | Alternatively, you can download [FULL PACKAGE](https://github.com/MahStudio/Winsta/releases/latest) and right click on the `Add-AppDevPackage.ps1` script and click `Run with Powershell`. If Windows complained about running the scrip, write `Set-ExecutionPolicy Unrestricted` in the powershell to allow running external scripts.
38 |
39 | > How should I install it on mobile?
40 |
41 | Get the appx file and tap it on mobile File Explorer. It will be installed. If it didn't, download and extract full package use device portal to install the package with it's dependencies.
42 |
43 | ## Features
44 | - Login (Two Factor login supported | Challenge require supported)
45 | - Login with Facebook
46 | - Logout
47 | - Like / Dislike
48 | - View posts (Image, Video, Carousel)
49 | - View Comments
50 | - View your own profile
51 | - View users profiles
52 | - View recent activities
53 | - View Stories
54 | - Search and Explore
55 | - Direct messages
56 | - Cinema mode
57 | - Accept and Ignore friend requests
58 | - Download posts (Available for Public profiles, Your own medias, and medias you are tagged in)
59 |
60 |
61 |
62 |
63 |
64 | ## Contributing
65 |
66 | ### Build Prerequisites
67 |
68 | 1. Windows 10
69 | 2. Visual Studio 2017 (latest build) with universal windows development features installed.
70 | 3. GIT for Windows ([install from here](http://gitforwindows.org/))
71 | 4. Knowledge about C#, Xaml, MVVM and Windows development.
72 |
73 | ### Insider chat on Telegram
74 |
75 | Join [Insiders group on Telegram](https://t.me/WinstaInsiders) to stay tuned about the development of this application, exchanging feedback and the insider builds.
76 |
77 | ### InstaApi
78 |
79 | This project uses [https://github.com/MahStudio/InstagramAPI](https://github.com/MahStudio/InstagramAPI).
80 |
81 | ## License
82 | Copyright © 2017-2018 [Winsta Authors](https://github.com/Mahstudio/Winsta/graphs/contributors) // [Mah Studio](https://mahstudio.github.io).
83 |
84 | If you want to create your own Instagram Client feel free to use our [private API NuGet](https://www.nuget.org/packages/InstagramUWPAPI)
85 | and feel free to use this source code as a sample code.
86 |
87 | > **NOTE**: Winsta is not going to be a freeware and we decided to continue this project in a private repository.
88 |
--------------------------------------------------------------------------------
/UnofficialInstagram_1.1.3.0_x86_ARM.cer:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MahStudio/Winsta/249e16ee0b499c74eaf188a622db61a089924cb3/UnofficialInstagram_1.1.3.0_x86_ARM.cer
--------------------------------------------------------------------------------
/WinGoTag.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 15
4 | VisualStudioVersion = 15.0.27130.2026
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Prebuilt", "Prebuilt", "{53F69782-E7AB-4591-95E6-C406A8D81B14}"
7 | EndProject
8 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "arm", "arm", "{DF75417E-75B3-4905-8D3D-5AE05C446B49}"
9 | ProjectSection(SolutionItems) = preProject
10 | Prebuilt\arm\Microsoft.UI.Xaml.dll = Prebuilt\arm\Microsoft.UI.Xaml.dll
11 | Prebuilt\arm\Microsoft.UI.Xaml.pri = Prebuilt\arm\Microsoft.UI.Xaml.pri
12 | Prebuilt\arm\Microsoft.UI.Xaml.winmd = Prebuilt\arm\Microsoft.UI.Xaml.winmd
13 | EndProjectSection
14 | EndProject
15 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Temp", "Temp", "{9CCC19E4-106F-44FD-B0F9-57122FE2C31D}"
16 | ProjectSection(SolutionItems) = preProject
17 | Prebuilt\Temp\Microsoft.UI.Xaml.dll = Prebuilt\Temp\Microsoft.UI.Xaml.dll
18 | Prebuilt\Temp\Microsoft.UI.Xaml.pri = Prebuilt\Temp\Microsoft.UI.Xaml.pri
19 | Prebuilt\Temp\Microsoft.UI.Xaml.winmd = Prebuilt\Temp\Microsoft.UI.Xaml.winmd
20 | EndProjectSection
21 | EndProject
22 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "x64", "x64", "{164AF706-587B-4D0F-9910-293B45FB44FA}"
23 | ProjectSection(SolutionItems) = preProject
24 | Prebuilt\x64\Microsoft.UI.Xaml.dll = Prebuilt\x64\Microsoft.UI.Xaml.dll
25 | Prebuilt\x64\Microsoft.UI.Xaml.pri = Prebuilt\x64\Microsoft.UI.Xaml.pri
26 | Prebuilt\x64\Microsoft.UI.Xaml.winmd = Prebuilt\x64\Microsoft.UI.Xaml.winmd
27 | EndProjectSection
28 | EndProject
29 | Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "x86", "x86", "{E42A7663-6529-466A-AAC4-3BA37C8C9DB5}"
30 | ProjectSection(SolutionItems) = preProject
31 | Prebuilt\x86\Microsoft.UI.Xaml.dll = Prebuilt\x86\Microsoft.UI.Xaml.dll
32 | Prebuilt\x86\Microsoft.UI.Xaml.pri = Prebuilt\x86\Microsoft.UI.Xaml.pri
33 | Prebuilt\x86\Microsoft.UI.Xaml.winmd = Prebuilt\x86\Microsoft.UI.Xaml.winmd
34 | EndProjectSection
35 | EndProject
36 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MGS.BackDrop", "MGSBlur\MGS.BackDrop.csproj", "{C4F5FECD-A48D-408A-A5D0-548D283D4257}"
37 | EndProject
38 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InstaNotifications", "InstaNotifications\InstaNotifications.csproj", "{8ACD1DF5-D67E-4D31-8986-F613D2121BF3}"
39 | EndProject
40 | Global
41 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
42 | Debug|Any CPU = Debug|Any CPU
43 | Debug|ARM = Debug|ARM
44 | Debug|x64 = Debug|x64
45 | Debug|x86 = Debug|x86
46 | Release|Any CPU = Release|Any CPU
47 | Release|ARM = Release|ARM
48 | Release|x64 = Release|x64
49 | Release|x86 = Release|x86
50 | EndGlobalSection
51 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
52 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
53 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Debug|ARM.ActiveCfg = Debug|ARM
54 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Debug|ARM.Build.0 = Debug|ARM
55 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Debug|x64.ActiveCfg = Debug|x64
56 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Debug|x64.Build.0 = Debug|x64
57 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Debug|x86.ActiveCfg = Debug|x86
58 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Debug|x86.Build.0 = Debug|x86
59 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Release|Any CPU.ActiveCfg = Release|Any CPU
60 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Release|Any CPU.Build.0 = Release|Any CPU
61 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Release|ARM.ActiveCfg = Release|ARM
62 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Release|ARM.Build.0 = Release|ARM
63 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Release|x64.ActiveCfg = Release|x64
64 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Release|x64.Build.0 = Release|x64
65 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Release|x86.ActiveCfg = Release|x86
66 | {C4F5FECD-A48D-408A-A5D0-548D283D4257}.Release|x86.Build.0 = Release|x86
67 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
68 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Debug|Any CPU.Build.0 = Debug|Any CPU
69 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Debug|ARM.ActiveCfg = Debug|ARM
70 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Debug|ARM.Build.0 = Debug|ARM
71 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Debug|x64.ActiveCfg = Debug|x64
72 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Debug|x64.Build.0 = Debug|x64
73 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Debug|x86.ActiveCfg = Debug|x86
74 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Debug|x86.Build.0 = Debug|x86
75 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Release|Any CPU.ActiveCfg = Release|Any CPU
76 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Release|Any CPU.Build.0 = Release|Any CPU
77 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Release|ARM.ActiveCfg = Release|ARM
78 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Release|ARM.Build.0 = Release|ARM
79 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Release|x64.ActiveCfg = Release|x64
80 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Release|x64.Build.0 = Release|x64
81 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Release|x86.ActiveCfg = Release|x86
82 | {8ACD1DF5-D67E-4D31-8986-F613D2121BF3}.Release|x86.Build.0 = Release|x86
83 | EndGlobalSection
84 | GlobalSection(SolutionProperties) = preSolution
85 | HideSolutionNode = FALSE
86 | EndGlobalSection
87 | GlobalSection(NestedProjects) = preSolution
88 | {DF75417E-75B3-4905-8D3D-5AE05C446B49} = {53F69782-E7AB-4591-95E6-C406A8D81B14}
89 | {9CCC19E4-106F-44FD-B0F9-57122FE2C31D} = {53F69782-E7AB-4591-95E6-C406A8D81B14}
90 | {164AF706-587B-4D0F-9910-293B45FB44FA} = {53F69782-E7AB-4591-95E6-C406A8D81B14}
91 | {E42A7663-6529-466A-AAC4-3BA37C8C9DB5} = {53F69782-E7AB-4591-95E6-C406A8D81B14}
92 | EndGlobalSection
93 | GlobalSection(ExtensibilityGlobals) = postSolution
94 | SolutionGuid = {F49369E6-3699-49A6-BA7B-852322F64B3B}
95 | EndGlobalSection
96 | EndGlobal
97 |
--------------------------------------------------------------------------------
/WinGoTag/Package.appxmanifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | WinGoTag
7 | ngame
8 | Assets\StoreLogo.png
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/WinGoTag/WinGoTag.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | x86
7 | {7FB28205-37D5-439E-AD6D-F8E8DF78CDCB}
8 | AppContainerExe
9 | Properties
10 | WinGoTag
11 | WinGoTag
12 | en-US
13 | UAP
14 | 10.0.17134.0
15 | 10.0.14393.0
16 | 14
17 | 512
18 | {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
19 | true
20 | WinGoTag_TemporaryKey.pfx
21 | False
22 | Always
23 | x86|x64|arm
24 | 74DCBCD132B7F5A41B69A655BF7AB044B998F1C7
25 | False
26 | 1
27 | OnApplicationRun
28 | False
29 |
30 |
31 | true
32 | bin\x86\Debug\
33 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
34 | ;2008
35 | full
36 | x86
37 | false
38 | prompt
39 | true
40 |
41 |
42 | bin\x86\Release\
43 | TRACE;NETFX_CORE;WINDOWS_UWP
44 | true
45 | ;2008
46 | pdbonly
47 | x86
48 | false
49 | prompt
50 | true
51 | true
52 |
53 |
54 | true
55 | bin\ARM\Debug\
56 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
57 | ;2008
58 | full
59 | ARM
60 | false
61 | prompt
62 | true
63 |
64 |
65 | bin\ARM\Release\
66 | TRACE;NETFX_CORE;WINDOWS_UWP
67 | true
68 | ;2008
69 | pdbonly
70 | ARM
71 | false
72 | prompt
73 | true
74 | true
75 |
76 |
77 | true
78 | bin\x64\Debug\
79 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
80 | ;2008
81 | full
82 | x64
83 | false
84 | prompt
85 | true
86 |
87 |
88 | bin\x64\Release\
89 | TRACE;NETFX_CORE;WINDOWS_UWP
90 | true
91 | ;2008
92 | pdbonly
93 | x64
94 | false
95 | prompt
96 | true
97 | true
98 |
99 |
100 | PackageReference
101 |
102 |
103 |
104 | App.xaml
105 |
106 |
107 |
108 |
109 | InstaMediaContentDialog.xaml
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 | ExtendedSplashScreen.xaml
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 | MainPage.xaml
140 |
141 |
142 |
143 |
144 |
145 | CarouselItemUC.xaml
146 |
147 |
148 | CarouselItemUCStories.xaml
149 |
150 |
151 | DirectMessageItemUC.xaml
152 |
153 |
154 | DirectThreadItemProviderUC.xaml
155 |
156 |
157 | GridItemUC.xaml
158 |
159 |
160 | InstaMediaUC.xaml
161 |
162 |
163 | InstaStoryFeedUC.xaml
164 |
165 |
166 | InstaStoryLiveUC.xaml
167 |
168 |
169 | LocalImageUC.xaml
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 | FollowRequestsView.xaml
184 |
185 |
186 | RecentActivityView.xaml
187 |
188 |
189 |
190 |
191 | EditPhotoVideoView.xaml
192 |
193 |
194 |
195 |
196 | FinalizeAddView.xaml
197 |
198 |
199 |
200 | PhotoGalleryView.xaml
201 |
202 |
203 | CameraView.xaml
204 |
205 |
206 | CommentsView.xaml
207 |
208 |
209 | DirectChatView.xaml
210 |
211 |
212 | DirectsListView.xaml
213 |
214 |
215 | EditProfile.xaml
216 |
217 |
218 | MainView.xaml
219 |
220 |
221 | MediaLikersView.xaml
222 |
223 |
224 | ProfileView.xaml
225 |
226 |
227 | ExploreView.xaml
228 |
229 |
230 | SearchPage.xaml
231 |
232 |
233 | StoryViewLive.xaml
234 |
235 |
236 | TopLiveVideos.xaml
237 |
238 |
239 | ChangePasswordView.xaml
240 |
241 |
242 | LikedFeedsView.xaml
243 |
244 |
245 | MainSettingsView.xaml
246 |
247 |
248 | StorySettingsView.xaml
249 |
250 |
251 | TwoFactorSettingsView.xaml
252 |
253 |
254 | LoginView.xaml
255 |
256 |
257 | RegisterView.xaml
258 |
259 |
260 | TwoStepFactorView.xaml
261 |
262 |
263 | SinglePostView.xaml
264 |
265 |
266 | StoryViewersView.xaml
267 |
268 |
269 | StoryViews.xaml
270 |
271 |
272 | UserFollowersView.xaml
273 |
274 |
275 | UserFollowingsView.xaml
276 |
277 |
278 | UserProfileView.xaml
279 |
280 |
281 |
282 |
283 | Designer
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
311 |
312 |
313 |
314 |
315 |
316 |
317 |
318 |
319 |
320 |
321 | PreserveNewest
322 |
323 |
324 | PreserveNewest
325 |
326 |
327 |
328 |
329 |
330 |
331 |
332 |
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
345 |
346 |
347 |
348 |
349 |
350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 |
358 |
359 |
360 |
361 |
362 |
363 |
364 |
365 | MSBuild:Compile
366 | Designer
367 |
368 |
369 | Designer
370 | MSBuild:Compile
371 |
372 |
373 | Designer
374 | MSBuild:Compile
375 |
376 |
377 | Designer
378 | MSBuild:Compile
379 |
380 |
381 | MSBuild:Compile
382 | Designer
383 |
384 |
385 | Designer
386 | MSBuild:Compile
387 |
388 |
389 | Designer
390 | MSBuild:Compile
391 |
392 |
393 | Designer
394 | MSBuild:Compile
395 |
396 |
397 | Designer
398 | MSBuild:Compile
399 |
400 |
401 | Designer
402 | MSBuild:Compile
403 |
404 |
405 | Designer
406 | MSBuild:Compile
407 |
408 |
409 | Designer
410 | MSBuild:Compile
411 |
412 |
413 | Designer
414 | MSBuild:Compile
415 |
416 |
417 | Designer
418 | MSBuild:Compile
419 |
420 |
421 | Designer
422 | MSBuild:Compile
423 |
424 |
425 | Designer
426 | MSBuild:Compile
427 |
428 |
429 | Designer
430 | MSBuild:Compile
431 |
432 |
433 | Designer
434 | MSBuild:Compile
435 |
436 |
437 | Designer
438 | MSBuild:Compile
439 |
440 |
441 | Designer
442 | MSBuild:Compile
443 |
444 |
445 | Designer
446 | MSBuild:Compile
447 |
448 |
449 | Designer
450 | MSBuild:Compile
451 |
452 |
453 | Designer
454 | MSBuild:Compile
455 |
456 |
457 | Designer
458 | MSBuild:Compile
459 |
460 |
461 | Designer
462 | MSBuild:Compile
463 |
464 |
465 | Designer
466 | MSBuild:Compile
467 |
468 |
469 | Designer
470 | MSBuild:Compile
471 |
472 |
473 | Designer
474 | MSBuild:Compile
475 |
476 |
477 | Designer
478 | MSBuild:Compile
479 |
480 |
481 | Designer
482 | MSBuild:Compile
483 |
484 |
485 | Designer
486 | MSBuild:Compile
487 |
488 |
489 | Designer
490 | MSBuild:Compile
491 |
492 |
493 | Designer
494 | MSBuild:Compile
495 |
496 |
497 | Designer
498 | MSBuild:Compile
499 |
500 |
501 | Designer
502 | MSBuild:Compile
503 |
504 |
505 | Designer
506 | MSBuild:Compile
507 |
508 |
509 | Designer
510 | MSBuild:Compile
511 |
512 |
513 | Designer
514 | MSBuild:Compile
515 |
516 |
517 | Designer
518 | MSBuild:Compile
519 |
520 |
521 | Designer
522 | MSBuild:Compile
523 |
524 |
525 | Designer
526 | MSBuild:Compile
527 |
528 |
529 | Designer
530 | MSBuild:Compile
531 |
532 |
533 | Designer
534 | MSBuild:Compile
535 |
536 |
537 | Designer
538 | MSBuild:Compile
539 |
540 |
541 | Designer
542 | MSBuild:Compile
543 |
544 |
545 | Designer
546 | MSBuild:Compile
547 |
548 |
549 | Designer
550 | MSBuild:Compile
551 |
552 |
553 | Designer
554 | MSBuild:Compile
555 |
556 |
557 | Designer
558 | MSBuild:Compile
559 |
560 |
561 | Designer
562 | MSBuild:Compile
563 |
564 |
565 | Designer
566 | MSBuild:Compile
567 |
568 |
569 | Designer
570 | MSBuild:Compile
571 |
572 |
573 | Designer
574 | MSBuild:Compile
575 |
576 |
577 | Designer
578 | MSBuild:Compile
579 |
580 |
581 |
582 |
583 | 1.0.5.2
584 |
585 |
586 | 3.0.593
587 |
588 |
589 | 6.1.7
590 |
591 |
592 | 4.0.0
593 |
594 |
595 | 4.0.0
596 |
597 |
598 | 4.0.0
599 |
600 |
601 | 4.0.0
602 |
603 |
604 | 2.0.0
605 |
606 |
607 | 2.0.180724003-prerelease
608 |
609 |
610 | 2.0.180822001-prerelease
611 |
612 |
613 |
614 |
615 | Windows Mobile Extensions for the UWP
616 |
617 |
618 |
619 |
620 | {8acd1df5-d67e-4d31-8986-f613d2121bf3}
621 | InstaNotifications
622 |
623 |
624 | {c4f5fecd-a48d-408a-a5d0-548d283d4257}
625 | MGS.BackDrop
626 |
627 |
628 |
629 |
630 |
631 |
632 |
635 |
636 |
637 | 14.0
638 |
639 |
640 |
653 |
--------------------------------------------------------------------------------