Skip to content

Commit

Permalink
🔖 2.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Khaoz-Topsy committed Jan 3, 2024
1 parent 16e48b8 commit a7f28d8
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 14 deletions.
2 changes: 1 addition & 1 deletion installers/assistantNMS.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Assistant for No Man's Sky"
#define MyAppVersion "2.20.1"
#define MyAppVersion "2.21.0"
#define MyAppPublisher "AssistantApps"
#define MyAppURL "https://nmsassistant.com/"
#define MyAppExeName "assistantnms_app.exe"
Expand Down
2 changes: 1 addition & 1 deletion lib/assistant_apps_settings.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
const assistantAppsApiUrl = 'https://api.assistantapps.com';
const assistantAppsAppGuid = '589405b4-e40f-4cd9-b793-6bf37944ee09';
const currentWhatIsNewGuid = '36a4e064-05dc-435b-a11f-fe7efb20e51e';
const currentWhatIsNewGuid = '4a32332b-3831-4a68-93a2-f65ae33ec048';
2 changes: 2 additions & 0 deletions lib/constants/nms_external_urls.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ class NmsExternalUrls {
'https://apps.apple.com/us/app/id1480287625';
static const String microsoftStoreListing =
'https://apps.microsoft.com/store/detail/assistant-for-no-mans-sky/9NQLF7XD0LF3';
static const String githubReleasesListing =
'https://github.com/AssistantNMS/App/releases';
static const String noMansSkyWebsite = 'https://nomanssky.com';
static const String discord = 'https://assistantapps.com/discord';
static const String twitter = 'https://twitter.com/AssistantNMS';
Expand Down
6 changes: 3 additions & 3 deletions lib/env/app_version_num.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
const appsBuildNum = 327;
const appsBuildName = '2.20.1';
const appsCommit = '398c0e2daddf9e096872e14a70f5fae58e26757a';
const appsBuildNum = 328;
const appsBuildName = '2.21.0';
const appsCommit = 'bd222b813825069689ee68c53e49f0ef4bde151f';
4 changes: 4 additions & 0 deletions lib/helpers/update_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import 'package:assistantapps_flutter_common/assistantapps_flutter_common.dart';
import 'package:flutter/material.dart';

import '../constants/nms_external_urls.dart';
import '../integration/dependency_injection.dart';

Future<void> checkForUpdate(BuildContext context) async {
String externalUrl = NmsExternalUrls.googlePlayListing;
Expand All @@ -12,6 +13,9 @@ Future<void> checkForUpdate(BuildContext context) async {
if (isWindows) {
externalUrl = NmsExternalUrls.microsoftStoreListing;
}
if (getEnv().isGithubRelease) {
externalUrl = NmsExternalUrls.githubReleasesListing;
}

return getUpdate().checkForUpdate(context, externalUrl);
}
4 changes: 2 additions & 2 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ packages:
description:
path: "."
ref: HEAD
resolved-ref: "39b48f284b2e0f3ec8d8754bd2847446c2c7393e"
resolved-ref: c5258a3199e6e9cdacb7fa96dfb694fe5141e8f0
url: "https://github.com/AssistantApps/Flutter.Common.git"
source: git
version: "0.2.54"
version: "0.2.55"
async:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: assistantnms_app
description: Assistant for No Man's Sky
homepage: https://nmsassistant.com
# author: Kurt Lourens
version: 2.20.1+327 # dart scripts\version_num_script.dart
version: 2.21.0+328 # dart scripts\version_num_script.dart
publish_to: 'none'

environment:
Expand Down Expand Up @@ -89,7 +89,7 @@ flutter_icons: ## dart run flutter_launcher_icons:main
msix_config: # https://pub.dev/documentation/msix/latest/
display_name: Assistant for No Man's Sky
publisher_display_name: AssistantApps
msix_version: 2.20.1.0
msix_version: 2.21.0.0
identity_name: notSureIfSecret
publisher: notSureIfSecret
logo_path: './assets/images/fullSizeIcon.png'
Expand Down
10 changes: 5 additions & 5 deletions release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
- 📦 Regen for 4.47
- 📱 Better design for larger screens
- 🐛 Center align platforms on Release Notes page
- 🎨 Improve the Expedition page
- 🌐 Updated translations
- 🤖 Android dependency upgrades
- 🐛 Better error handling for Community mission page


Submitted to App Stores 2023-12-18
Submitted to App Stores 2024-01-03

For more details on this update please visit the "What is New" page in the Apps or on the website

0 comments on commit a7f28d8

Please sign in to comment.