Initial renaming pass

codemagic-setup
Hank Grabowski 2023-01-19 22:37:00 -05:00
rodzic 6e9d34ff54
commit 2289ea5305
23 zmienionych plików z 139 dodań i 139 usunięć

Wyświetl plik

@ -1,4 +1,4 @@
# Friendica Portal
# Relatica
A Flutter application for interfacing with the Friendica social network.

Wyświetl plik

@ -44,7 +44,7 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "social.myportal.flutter_portal"
applicationId "social.myportal.relatica"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
minSdkVersion 21

Wyświetl plik

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="social.myportal.flutter_portal">
package="social.myportal.relatica">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.

Wyświetl plik

@ -1,8 +1,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="social.myportal.flutter_portal">
package="social.myportal.relatica">
<application
android:label="flutter_portal"
android:label="relatica"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity

Wyświetl plik

@ -1,4 +1,4 @@
package social.myportal.flutter_portal
package social.myportal.relatica
import io.flutter.embedding.android.FlutterActivity

Wyświetl plik

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="social.myportal.flutter_portal">
package="social.myportal.relatica">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.

Wyświetl plik

@ -13,7 +13,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>flutter_portal</string>
<string>relatica</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>

Wyświetl plik

@ -16,8 +16,8 @@ class ObjectBoxCache {
final path = p.join(docsDir.path, 'objectboxcache');
_logger.info('ObjectBoxCache path: $path');
final store = await openStore(
directory: path, macosApplicationGroup: 'friendica_portal');
final store =
await openStore(directory: path, macosApplicationGroup: 'relatica');
return ObjectBoxCache._create(store);
}
}

Wyświetl plik

@ -1,10 +1,10 @@
import 'package:flutter/material.dart';
import 'package:friendica_portal/globals.dart';
import 'package:friendica_portal/services/auth_service.dart';
import 'package:go_router/go_router.dart';
import '../controls/app_bottom_nav_bar.dart';
import '../globals.dart';
import '../routes.dart';
import '../services/auth_service.dart';
class MenusScreen extends StatelessWidget {
static const menuButtonWidth = 350.0;

Wyświetl plik

@ -4,10 +4,10 @@ project(runner LANGUAGES CXX)
# The name of the executable created for the application. Change this to change
# the on-disk name of your application.
set(BINARY_NAME "flutter_portal")
set(BINARY_NAME "relatica")
# The unique GTK application identifier for this application. See:
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
set(APPLICATION_ID "social.myportal.flutter_portal")
set(APPLICATION_ID "social.myportal.relatica")
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.

Wyświetl plik

@ -40,11 +40,11 @@ static void my_application_activate(GApplication* application) {
if (use_header_bar) {
GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new());
gtk_widget_show(GTK_WIDGET(header_bar));
gtk_header_bar_set_title(header_bar, "flutter_portal");
gtk_header_bar_set_title(header_bar, "relatica");
gtk_header_bar_set_show_close_button(header_bar, TRUE);
gtk_window_set_titlebar(window, GTK_WIDGET(header_bar));
} else {
gtk_window_set_title(window, "flutter_portal");
gtk_window_set_title(window, "relatica");
}
gtk_window_set_default_size(window, 1280, 720);

Wyświetl plik

@ -55,7 +55,7 @@
/* Begin PBXFileReference section */
333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = "<group>"; };
33CC10ED2044A3C60003C045 /* flutter_portal.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = flutter_portal.app; sourceTree = BUILT_PRODUCTS_DIR; };
33CC10ED2044A3C60003C045 /* relatica.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = relatica.app; sourceTree = BUILT_PRODUCTS_DIR; };
33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = "<group>"; };
33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
@ -113,7 +113,7 @@
33CC10EE2044A3C60003C045 /* Products */ = {
isa = PBXGroup;
children = (
33CC10ED2044A3C60003C045 /* flutter_portal.app */,
33CC10ED2044A3C60003C045 /* relatica.app */,
);
name = Products;
sourceTree = "<group>";
@ -194,7 +194,7 @@
);
name = Runner;
productName = Runner;
productReference = 33CC10ED2044A3C60003C045 /* flutter_portal.app */;
productReference = 33CC10ED2044A3C60003C045 /* relatica.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */

Wyświetl plik

@ -15,7 +15,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "flutter_portal.app"
BuildableName = "relatica.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
@ -31,7 +31,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "flutter_portal.app"
BuildableName = "relatica.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
@ -54,7 +54,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "flutter_portal.app"
BuildableName = "relatica.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
@ -71,7 +71,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "33CC10EC2044A3C60003C045"
BuildableName = "flutter_portal.app"
BuildableName = "relatica.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>

Wyświetl plik

@ -5,10 +5,10 @@
// 'flutter create' template.
// The application's name. By default this is also the title of the Flutter window.
PRODUCT_NAME = flutter_portal
PRODUCT_NAME = Relatica
// The application's bundle identifier
PRODUCT_BUNDLE_IDENTIFIER = social.myportal.flutterPortal
PRODUCT_BUNDLE_IDENTIFIER = social.myportal.relatica
// The copyright displayed in application information
PRODUCT_COPYRIGHT = Copyright © 2022 social.myportal. All rights reserved.
PRODUCT_COPYRIGHT = Copyright © 2022 My Social Portal. All rights reserved.

Wyświetl plik

@ -10,7 +10,7 @@
<array/>
<key>com.apple.security.application-groups</key>
<array>
<string>friendica_portal</string>
<string>relatica</string>
</array>
</dict>
</plist>

Wyświetl plik

@ -14,7 +14,7 @@
<array/>
<key>com.apple.security.application-groups</key>
<array>
<string>friendica_portal</string>
<string>relatica</string>
</array>
</dict>
</plist>

Wyświetl plik

@ -1,5 +1,5 @@
name: friendica_portal
description: Friendica Social Network Application
name: relatica
description: A mobile and desktop client for interacting with the Friendica social network
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1

Wyświetl plik

@ -1,8 +1,8 @@
import 'package:flutter_test/flutter_test.dart';
import 'package:friendica_portal/globals.dart';
import 'package:friendica_portal/models/entry_tree_item.dart';
import 'package:friendica_portal/models/timeline_entry.dart';
import 'package:friendica_portal/utils/entry_tree_item_flattening.dart';
import 'package:relatica/globals.dart';
import 'package:relatica/models/entry_tree_item.dart';
import 'package:relatica/models/timeline_entry.dart';
import 'package:relatica/utils/entry_tree_item_flattening.dart';
void main() {
group('Flattening Tests', () {

Wyświetl plik

@ -18,26 +18,26 @@
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="Friendica Social Network Application">
<meta content="Friendica Social Network Client" name="description">
<!-- iOS meta tags & icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="flutter_portal">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta content="Relatica" name="apple-mobile-web-app-title">
<link href="icons/Icon-192.png" rel="apple-touch-icon">
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>
<link href="favicon.png" rel="icon" type="image/png"/>
<title>flutter_portal</title>
<link rel="manifest" href="manifest.json">
<title>Relatica</title>
<link href="manifest.json" rel="manifest">
<script>
// The value below is injected by flutter build, do not touch.
var serviceWorkerVersion = null;
</script>
<!-- This script adds the flutter initialization JS code -->
<script src="flutter.js" defer></script>
<script defer src="flutter.js"></script>
</head>
<body>
<script>

Wyświetl plik

@ -1,11 +1,11 @@
{
"name": "flutter_portal",
"short_name": "flutter_portal",
"name": "relatica",
"short_name": "relatica",
"start_url": ".",
"display": "standalone",
"background_color": "#0175C2",
"theme_color": "#0175C2",
"description": "Friendica Social Network Application",
"description": "Friendica Social Network Client",
"orientation": "portrait-primary",
"prefer_related_applications": false,
"icons": [

Wyświetl plik

@ -1,10 +1,10 @@
# Project-level configuration.
cmake_minimum_required(VERSION 3.14)
project(flutter_portal LANGUAGES CXX)
project(relatica LANGUAGES CXX)
# The name of the executable created for the application. Change this to change
# the on-disk name of your application.
set(BINARY_NAME "flutter_portal")
set(BINARY_NAME "relatica")
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.

Wyświetl plik

@ -89,13 +89,13 @@ BEGIN
BEGIN
BLOCK "040904e4"
BEGIN
VALUE "CompanyName", "social.myportal" "\0"
VALUE "FileDescription", "flutter_portal" "\0"
VALUE "CompanyName", "My Social Portal" "\0"
VALUE "FileDescription", "Relatica" "\0"
VALUE "FileVersion", VERSION_AS_STRING "\0"
VALUE "InternalName", "flutter_portal" "\0"
VALUE "LegalCopyright", "Copyright (C) 2022 social.myportal. All rights reserved." "\0"
VALUE "OriginalFilename", "flutter_portal.exe" "\0"
VALUE "ProductName", "flutter_portal" "\0"
VALUE "InternalName", "relatica" "\0"
VALUE "LegalCopyright", "Copyright (C) 2022 My Social Portal. All rights reserved." "\0"
VALUE "OriginalFilename", "relatica.exe" "\0"
VALUE "ProductName", "relatica" "\0"
VALUE "ProductVersion", VERSION_AS_STRING "\0"
END
END

Wyświetl plik

@ -27,7 +27,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
FlutterWindow window(project);
Win32Window::Point origin(10, 10);
Win32Window::Size size(1280, 720);
if (!window.CreateAndShow(L"flutter_portal", origin, size)) {
if (!window.CreateAndShow(L"relatica", origin, size)) {
return EXIT_FAILURE;
}
window.SetQuitOnClose(true);