Skip to content

Commit

Permalink
Rename to VFR Essentials (from No Fuss PPG).
Browse files Browse the repository at this point in the history
  • Loading branch information
CaramelDunes committed Sep 25, 2020
1 parent 2c72c43 commit 23de0b6
Show file tree
Hide file tree
Showing 16 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# nofussppg
# vfr_essentials

A new Flutter project.

Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "fr.carameldunes.nofussppg"
applicationId "fr.carameldunes.vfressentials"
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/debug/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fr.carameldunes.nofussppg">
package="fr.carameldunes.vfressentials">
</manifest>
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fr.carameldunes.nofussppg">
package="fr.carameldunes.vfressentials">

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package fr.carameldunes.nofussppg
package fr.carameldunes.vfressentials

import io.flutter.embedding.android.FlutterActivity

Expand Down
2 changes: 1 addition & 1 deletion android/app/src/profile/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fr.carameldunes.nofussppg">
package="fr.carameldunes.vfressentials">
</manifest>
6 changes: 3 additions & 3 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.nofussppg;
PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.vfressentials;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
Expand Down Expand Up @@ -431,7 +431,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.nofussppg;
PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.vfressentials;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
Expand All @@ -458,7 +458,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.nofussppg;
PRODUCT_BUNDLE_IDENTIFIER = fr.carameldunes.vfressentials;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
Expand Down
2 changes: 1 addition & 1 deletion ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>nofussppg</string>
<string>vfr_essentials</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
Expand Down
2 changes: 1 addition & 1 deletion lib/flight_recorder.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'dart:io';
import 'package:latlong/latlong.dart';

import 'package:nofussppg/instruments_data_source.dart';
import 'package:vfr_essentials/instruments_data_source.dart';

class FlightRecorder {
IOSink _outputSink;
Expand Down
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'NoFussPPG',
title: 'VFR Essentials',
theme: ThemeData(
primaryColor: Colors.black,
visualDensity: VisualDensity.adaptivePlatformDensity,
Expand Down
2 changes: 1 addition & 1 deletion lib/map/flight_map.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'dart:math';
import 'package:flutter/material.dart';
import 'package:flutter_map/flutter_map.dart';

import 'package:nofussppg/instruments_data_source.dart';
import 'package:vfr_essentials/instruments_data_source.dart';
import 'package:latlong/latlong.dart';
import '../preset_layers.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/preset_layers.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import 'package:flutter_map/flutter_map.dart';

import 'package:nofussppg/user_agent_tile_provider.dart';
import 'package:vfr_essentials/user_agent_tile_provider.dart';
import 'package:path_provider/path_provider.dart';
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
import 'package:path/path.dart' as p;
Expand Down
2 changes: 1 addition & 1 deletion lib/route_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'dart:async';
import 'package:meta/meta.dart';
import 'package:flutter_map/flutter_map.dart';
import 'package:latlong/latlong.dart';
import 'package:nofussppg/instruments_data_source.dart';
import 'package:vfr_essentials/instruments_data_source.dart';

class RouteManager {
List<LatLng> waypoints = [];
Expand Down
2 changes: 1 addition & 1 deletion lib/user_agent_tile_provider.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:flutter/widgets.dart';
import 'package:flutter_map/flutter_map.dart';
import 'package:cached_network_image/cached_network_image.dart';
import 'package:nofussppg/preset_layers.dart';
import 'package:vfr_essentials/preset_layers.dart';

export 'package:flutter_map/src/layer/tile_provider/mbtiles_image_provider.dart';

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: nofussppg
name: vfr_essentials
description: A new Flutter project.

publish_to: 'none' # Remove this line if you wish to publish to pub.dev
Expand Down
2 changes: 1 addition & 1 deletion test/widget_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';

import 'package:nofussppg/main.dart';
import 'package:vfr_essentials/main.dart';

void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
Expand Down

0 comments on commit 23de0b6

Please sign in to comment.