Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoVIII committed Jun 7, 2022
1 parent 2ce1618 commit ca7febe
Show file tree
Hide file tree
Showing 10 changed files with 107 additions and 609 deletions.
24 changes: 10 additions & 14 deletions paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,16 @@ framework: auto-detect
storage: none

nuget FSharp.Core content: none
nuget Avalonia 0.10.10
nuget Avalonia.Diagnostics 0.10.10
nuget FsToolkit.ErrorHandling ~> 2.0
nuget NicoVIII.GogApi ~> 3.0
nuget Avalonia
nuget Avalonia.Diagnostics
nuget FsToolkit.ErrorHandling
nuget JaggerJo.Avalonia.FuncUI.DSL
nuget JaggerJo.Avalonia.FuncUI.Elmish
nuget MessageBox.Avalonia
nuget Mono.Posix.NETStandard
nuget NicoVIII.GogApi
nuget NicoVIII.SimpleOptics
nuget JaggerJo.Avalonia.FuncUI 0.5.0-beta
nuget JaggerJo.Avalonia.FuncUI.DSL 0.5.0-beta
nuget JaggerJo.Avalonia.FuncUI.Elmish 0.5.0-beta
nuget MessageBox.Avalonia ~> 1.6
nuget Mono.Posix.NETStandard ~> 1.0
nuget Myriad.Core ~> 0.4.0
nuget Myriad.Plugins ~> 0.4.0
nuget Myriad.Sdk ~> 0.4.0
nuget SharpZipLib ~> 1.2
nuget TypedPersistence.Json ~> 0.6.0-alpha.5
nuget SharpZipLib
nuget TypedPersistence.Json prerelease

nuget Expecto.FsCheck
658 changes: 76 additions & 582 deletions paket.lock

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion src/Andromeda/AvaloniaApp/Components/Authentication.fs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,15 @@ module Authentication =
| "" -> Cmd.none
| authCode ->
let getAuth () =
async { return! Authentication.getNewToken redirectUri authCode }
async {
printfn "get new token"

let! response =
Authentication.getNewToken redirectUri authCode

printfn "got new token: %A" response
return response
}

let msgFnc auth = TryAuthenticate auth

Expand Down
6 changes: 4 additions & 2 deletions src/Andromeda/AvaloniaApp/Components/InstallGame.fs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ namespace Andromeda.AvaloniaApp.Components
open Andromeda.Core
open Avalonia
open Avalonia.Controls
open Avalonia.FuncUI.Components

open Elmish
open Avalonia.FuncUI
open Avalonia.FuncUI.DSL
open Avalonia.Input
open Avalonia.Layout
open Elmish

open GogApi
open GogApi.DomainTypes

Expand Down
4 changes: 2 additions & 2 deletions src/Andromeda/AvaloniaApp/Components/Settings.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ open Andromeda.Core
open Andromeda.Core.DomainTypes
open Avalonia
open Avalonia.Controls
open Avalonia.FuncUI.Components
open Elmish
open Avalonia.FuncUI
open Avalonia.FuncUI.DSL
open Avalonia.FuncUI.Types
open Avalonia.Layout
open Elmish
open System.IO

open Andromeda.AvaloniaApp.AvaloniaHelper
Expand Down
5 changes: 2 additions & 3 deletions src/Andromeda/AvaloniaApp/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,15 @@ open Andromeda.Core
open Avalonia
open Avalonia.Controls
open Avalonia.Controls.ApplicationLifetimes
open Avalonia.FuncUI.Elmish
open Elmish
open Avalonia.FuncUI.Elmish
open Avalonia.FuncUI.Hosts
open GogApi
open Avalonia.FuncUI

open Andromeda.AvaloniaApp

module Program =
open Avalonia.FuncUI.Components.Hosts

type MainWindow() as this =
inherit HostWindow()

Expand Down
2 changes: 1 addition & 1 deletion src/Andromeda/AvaloniaApp/View.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ open Avalonia.Controls
open Avalonia.Controls.Primitives
open Avalonia.Layout

open Avalonia.FuncUI.Components
open Avalonia.FuncUI
open Avalonia.FuncUI.DSL
open Avalonia.FuncUI.Types

Expand Down
2 changes: 1 addition & 1 deletion src/Andromeda/AvaloniaApp/paket.references
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Avalonia
FSharp.Core
Avalonia.Diagnostics
JaggerJo.Avalonia.FuncUI.DSL
JaggerJo.Avalonia.FuncUI.Elmish
Expand Down
2 changes: 1 addition & 1 deletion src/Andromeda/Core/Diverse.fs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace Andromeda.Core

open FsHttp
open FsHttp.DslCE
open GogApi
open GogApi.DomainTypes
Expand Down Expand Up @@ -31,7 +32,6 @@ module Diverse =
}

[<Pure>]
/// Takes a list of Installers and returns only those, who are for the given OS
let filterInstallersByOS systemInfo (installers: InstallerInfo list) =
let filter =
match systemInfo with
Expand Down
3 changes: 1 addition & 2 deletions src/Andromeda/Core/paket.references
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
FSharp.Core
NicoVIII.GogApi
NicoVIII.SimpleOptics
Mono.Posix.NETStandard
SharpZipLib
TypedPersistence.Json
Myriad.Plugins
Myriad.Sdk
FsToolkit.ErrorHandling

0 comments on commit ca7febe

Please sign in to comment.