Skip to content

Commit

Permalink
Updated for FOSDEM 2020
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Sapundzhiev committed Jan 1, 2020
1 parent d1d231c commit f1b6fec
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion FOSDEM/FOSDEM.Shared/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ private static async Task LoadFromWeb()
try
{
HttpClient http = new HttpClient();
string url = "https://fosdem.org/2019/schedule/xml";
string url = $"https://fosdem.org/{DateTime.Now.Year}/schedule/xml";
HttpResponseMessage response = await http.GetAsync(url);
string xml = await response.Content.ReadAsStringAsync();

Expand Down
2 changes: 2 additions & 0 deletions FOSDEM/FOSDEM.Shared/Model/Event.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ public string ImagePath
return @"Assets/buildingh.png";
case 'U':
return @"Assets/buildingu.png";
case 'S':
return @"Assets/buildings.png";
default:
return @"Assets/buildingaw.png";
}
Expand Down
Binary file modified FOSDEM/FOSDEM.WindowsPhone/Assets/buildingaw.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified FOSDEM/FOSDEM.WindowsPhone/Assets/buildingh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified FOSDEM/FOSDEM.WindowsPhone/Assets/buildingj.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified FOSDEM/FOSDEM.WindowsPhone/Assets/buildingk.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added FOSDEM/FOSDEM.WindowsPhone/Assets/buildings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified FOSDEM/FOSDEM.WindowsPhone/Assets/buildingu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions FOSDEM/FOSDEM.WindowsPhone/FOSDEM.WindowsPhone.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
<Content Include="Assets\buildingh.png" />
<Content Include="Assets\buildingj.png" />
<Content Include="Assets\buildingk.png" />
<Content Include="Assets\buildings.png" />
<Content Include="Assets\buildingu.png" />
<Content Include="Assets\fosdem-home-visual.jpg" />
<Content Include="Assets\fosdembg.png" />
Expand Down
4 changes: 2 additions & 2 deletions FOSDEM/FOSDEM.WindowsPhone/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</ItemsPanelTemplate>
<local:BooleanToVisibilityConverter x:Key="TrueToVisibleConverter" />
</Page.Resources>
<Pivot Name="PivotMain" Title="FOSDEM'18">
<Pivot Name="PivotMain" Title="FOSDEM'2020">
<PivotItem Header="Welcome">
<Grid>
<Grid.RowDefinitions>
Expand All @@ -57,7 +57,7 @@
<Grid>
<Image Source="Assets/fosdem-home-visual.jpg" Height="100" Stretch="Uniform" />
<Image Source="Assets/fosdembg.png" Height="50" Stretch="Uniform" />
<TextBlock Text="Brussels / 3 &amp; 4 February 2018"
<TextBlock Text="Brussels / 1 &amp; 2 February 2020"
TextAlignment="Center"
VerticalAlignment="Bottom"
Foreground="White"
Expand Down
2 changes: 1 addition & 1 deletion FOSDEM/FOSDEM.WindowsPhone/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/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" xmlns:m3="http://schemas.microsoft.com/appx/2014/manifest" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest">
<Identity Name="46941JulianMadeIt.FOSDEM" Publisher="CN=1EA7650B-C750-41A5-9801-B0DC924D9E79" Version="1.1.0.6" />
<Identity Name="46941JulianMadeIt.FOSDEM" Publisher="CN=1EA7650B-C750-41A5-9801-B0DC924D9E79" Version="1.1.0.7" />
<mp:PhoneIdentity PhoneProductId="042fb106-c7e6-459c-b16e-94e3d8ea64a7" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>FOSDEM</DisplayName>
Expand Down

0 comments on commit f1b6fec

Please sign in to comment.