Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to v0.1.0-rc2-hotfix1 #54

Merged
merged 34 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
2c7c708
#46 Remove redundant command execution in GmlButton
GamerVII-NET Aug 7, 2024
8e37481
Handle disk full errors with new localized messages.
GamerVII-NET Aug 7, 2024
1a6a890
Add error handling for game profile initialization
GamerVII-NET Aug 7, 2024
21cea5a
Add placeholder for Sentry Java logging
GamerVII-NET Aug 7, 2024
5798189
Update submodule link Gml.Client
GamerVII-NET Aug 11, 2024
381684d
Add GameProfileError constant to ResourceKeysDictionary
GamerVII-NET Aug 11, 2024
d919378
Merge branch 'main' into dev
GamerVII-NET Aug 11, 2024
3964872
Update submodule link Gml.Client
GamerVII-NET Aug 11, 2024
5eb6e56
Solving the error for folders that have UTF-8 characters or spaces in…
Dirold2 Aug 16, 2024
bce7880
Fixing warnings and updating the license string in Gml.Launcher.cspro…
Dirold2 Aug 16, 2024
3aa0a37
Merge branch 'main' into dev
GamerVII-NET Aug 18, 2024
7af0abf
Merge pull request #49
GamerVII-NET Aug 18, 2024
9088d27
Merge remote-tracking branch 'origin/dev' into dev
GamerVII-NET Aug 18, 2024
4359dd6
Add GameProfileError constant to ResourceKeysDictionary
GamerVII-NET Sep 1, 2024
3b64970
Log error output from process data receiver
GamerVII-NET Sep 1, 2024
9c221d3
Add SplashScreen view import and update initialization
GamerVII-NET Sep 1, 2024
1917d6d
Merge branch 'main' into dev
GamerVII-NET Sep 1, 2024
e711d61
Add splash screen on app startup
GamerVII-NET Sep 1, 2024
bf9ba33
Refactor variable declaration in OverviewPageViewModel
GamerVII-NET Sep 9, 2024
558b7b3
Integrate Sentry for exception logging
GamerVII-NET Sep 9, 2024
0f96fea
Enhance splash screen initialization and authentication
GamerVII-NET Sep 9, 2024
a208553
Add expired session error handling
GamerVII-NET Sep 9, 2024
1a731eb
Update submodule link Gml.Client
GamerVII-NET Sep 9, 2024
91d8a67
Add LogHandler service for improved log processing
GamerVII-NET Sep 10, 2024
6bff98c
Merge branch 'main' into dev
GamerVII-NET Oct 12, 2024
7cb1d97
Add detailed installation instructions to README.md
Gamer-VII Oct 12, 2024
9ae817b
Add README.md to Gml.Client project in solution
Gamer-VII Oct 12, 2024
a859571
Update submodule link Gml.Client
Gamer-VII Oct 12, 2024
50c4011
Merge remote-tracking branch 'origin/dev' into dev
GamerVII-NET Oct 12, 2024
a906375
Prevent further processing of error data
GamerVII-NET Oct 12, 2024
7b4e51a
Update submodule link Gml.Core
GamerVII-NET Oct 12, 2024
6fcbc00
Refactor authentication flow in SplashScreenViewModel
GamerVII-NET Oct 16, 2024
cb401cb
Update submodule link Gml.Client
GamerVII-NET Oct 16, 2024
0823888
Merge branch 'main' into dev
GamerVII-NET Oct 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Gml.Client
12 changes: 6 additions & 6 deletions src/Gml.Launcher/ViewModels/SplashScreenViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ public async Task InitializeAsync()
}

var authUser = await _storageService.GetAsync<AuthUser>(StorageConstants.User);

var accessUser = await _manager.Auth(authUser?.AccessToken ?? string.Empty);

await _storageService.SetAsync(StorageConstants.User, accessUser.User);

IsAuth = accessUser.User.ExpiredDate > DateTime.Now && accessUser is { User.IsAuth: true };
//
// var accessUser = await _manager.Auth(authUser?.AccessToken ?? string.Empty);
//
// await _storageService.SetAsync(StorageConstants.User, accessUser.User);
//
IsAuth = authUser != null && authUser.ExpiredDate > DateTime.Now && authUser is { IsAuth: true };
}
catch (Exception exception)
{
Expand Down
Loading