Skip to content

Commit

Permalink
docs: updated changed fields and files list (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
OutdatedGuy authored Dec 19, 2024
1 parent 8e3ed18 commit 19c20d5
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 36 deletions.
72 changes: 37 additions & 35 deletions CHANGED_FIELDS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,92 +8,94 @@

#### Android

- `android\app\build.gradle` > android > defaultConfig > applicationId ✅
- `android\app\build.gradle` > android > namespace ✅
- `android\app\src\debug\AndroidManifest.xml` > manifest > package ✅
- `android\app\src\main\AndroidManifest.xml` > manifest > package ✅
- `android\app\src\profile\AndroidManifest.xml` > manifest > package ✅
- `android/app/build.gradle` > android > defaultConfig > applicationId ✅
- `android/app/build.gradle` > android > namespace ✅
- `android/app/src/debug/AndroidManifest.xml` > manifest > package ✅
- `android/app/src/main/AndroidManifest.xml` > manifest > package ✅
- `android/app/src/profile/AndroidManifest.xml` > manifest > package ✅

#### iOS

- `ios\Runner.xcodeproj\project.pbxproj` > PRODUCT_BUNDLE_IDENTIFIER ✅
- `ios/Runner.xcodeproj/project.pbxproj` > PRODUCT_BUNDLE_IDENTIFIER ✅

#### Linux

- `linux\CMakeLists.txt` > APPLICATION_ID ✅
- `linux/CMakeLists.txt` > APPLICATION_ID ✅

#### macOS

- `macos\Runner\Configs\AppInfo.xcconfig` > PRODUCT_BUNDLE_IDENTIFIER ✅
- `macos\Runner.xcodeproj\project.pbxproj` > PRODUCT_BUNDLE_IDENTIFIER ✅
- `macos/Runner/Configs/AppInfo.xcconfig` > PRODUCT_BUNDLE_IDENTIFIER ✅
- `macos/Runner.xcodeproj/project.pbxproj` > PRODUCT_BUNDLE_IDENTIFIER ✅

## Organization

#### Windows

- `windows\runner\Runner.rc` > CompanyName ✅
- `windows/runner/Runner.rc` > CompanyName ✅

## CopyRight Notice
## Copyright Notice

#### macOS

- `macos\Runner\Configs\AppInfo.xcconfig` > PRODUCT_COPYRIGHT ✅
- `macos/Runner/Configs/AppInfo.xcconfig` > PRODUCT_COPYRIGHT ✅

#### Windows

- `windows\runner\Runner.rc` > LegalCopyright ✅
- `windows/runner/Runner.rc` > LegalCopyright ✅

## App Name

#### Android

- `android\app\src\main\AndroidManifest.xml` > manifest > application > android:label
- `android/app/src/main/AndroidManifest.xml` > manifest > application > android:label

#### iOS

- `ios\Runner\Info.plist` > CFBundleDisplayName ✅
- `ios\Runner\Info.plist` > CFBundleName (max 15 chars, shows warning) ✅
- `ios/Runner/Info.plist` > CFBundleDisplayName ✅
- `ios/Runner/Info.plist` > CFBundleName (max 15 chars, shows warning) ✅

#### Linux

- `linux\my_application.cc` > gtk_header_bar_set_title ✅
- `linux\my_application.cc` > gtk_window_set_title ✅
- `linux/my_application.cc` > gtk_header_bar_set_title ✅
- `linux/my_application.cc` > gtk_window_set_title ✅
- `linux/runner/my_application.cc` > gtk_header_bar_set_title ✅
- `linux/runner/my_application.cc` > gtk_window_set_title ✅

#### macOS

- `macos\Runner\Configs\AppInfo.xcconfig` > PRODUCT_NAME ✅
- `macos\Runner.xcodeproj\project.pbxproj` > .app ✅
- `macos\Runner.xcodeproj\xcshareddata\xcschemes\Runner.xcscheme` > BuildableName ✅
- `macos/Runner/Configs/AppInfo.xcconfig` > PRODUCT_NAME ✅
- `macos/Runner.xcodeproj/project.pbxproj` > .app ✅
- `macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme` > BuildableName ✅

#### Web

- `web\index.html` > html > head > meta:apple-mobile-web-app-title
- `web\index.html` > html > head > title ✅
- `web\manifest.json` > name ✅
- `web\manifest.json` > short_name ✅
- `web/index.html` > html > head > meta:apple-mobile-web-app-title
- `web/index.html` > html > head > title ✅
- `web/manifest.json` > name ✅
- `web/manifest.json` > short_name ✅

#### Windows

- `windows\CMakeLists.txt` > project ❌
- `windows\runner\main.cpp` > CreateAndShow ✅
- `windows\runner\main.cpp` > Create ✅
- `windows\runner\Runner.rc` > FileDescription ✅
- `windows\runner\Runner.rc` > InternalName ✅
- `windows\runner\Runner.rc` > ProductName ✅
- `windows/CMakeLists.txt` > project ❌
- `windows/runner/main.cpp` > CreateAndShow ✅
- `windows/runner/main.cpp` > Create ✅
- `windows/runner/Runner.rc` > FileDescription ✅
- `windows/runner/Runner.rc` > InternalName ✅
- `windows/runner/Runner.rc` > ProductName ✅

## Executable Name

#### Linux

- `linux\CMakeLists.txt` > BINARY_NAME ✅
- `linux/CMakeLists.txt` > BINARY_NAME ✅

#### Windows

- `windows\CMakeLists.txt` > BINARY_NAME ✅
- `windows\runner\Runner.rc` > OriginalFilename ✅
- `windows/CMakeLists.txt` > BINARY_NAME ✅
- `windows/runner/Runner.rc` > OriginalFilename ✅

## New

#### Android

- `android\app\src\main` > lang used > New Folder Structure > MainActivity File ✅
- `android/app/src/main` > lang used > New Folder Structure > MainActivity File ✅
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A Blazingly Fast way to configure your Bleeding Edge flutter project to be produ

<hr />

Package Rename handles changing **_33 fields_** across **_17 files_** on **_6 platforms_** so you can focus on your awesome project.
Package Rename handles changing **_36 fields_** across **_18 files_** on **_6 platforms_** so you can focus on your awesome project.

For more info see [list of changed fields](CHANGED_FIELDS.md)

Expand Down

0 comments on commit 19c20d5

Please sign in to comment.