appforge-cli 1.0.9__tar.gz → 1.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: appforge-cli
3
- Version: 1.0.9
3
+ Version: 1.1.2
4
4
  Summary: Convert web, Flutter, and native apps into Android/iOS apps automatically using cloud builds.
5
5
  Author: AppForge Team
6
6
  Author-email: AppForge Team <juniorsir.bot@gmail.com>
@@ -5,7 +5,7 @@ from .detector import detect_project
5
5
  from .capacitor import setup_capacitor, apply_configuration
6
6
  from .config import save_local_config, load_local_config
7
7
  from .github import push_and_build, check_status, download_apk
8
-
8
+ import time
9
9
  from .ai import scan_codebase_for_permissions
10
10
  from .capacitor import install_plugins
11
11
 
@@ -134,7 +134,7 @@ def status_check():
134
134
  def download_app():
135
135
  download_apk()
136
136
 
137
- def show_help():
137
+ def show_argu():
138
138
  print("Commands:")
139
139
  print(" appforge init - Initialize an AppForge project")
140
140
  print(" appforge configure - Open interactive settings")
@@ -143,6 +143,28 @@ def show_help():
143
143
  print(" appforge download - Download the built APK")
144
144
  print(" appforge help - Show this help message")
145
145
 
146
+ def show_help():
147
+ """The animated welcome sequence for the very first run."""
148
+ welcome_message = f"{BOLD}▲ AppForge{RESET} - The Universal App Builder"
149
+
150
+ # Typing animation
151
+ for char in welcome_message:
152
+ sys.stdout.write(char)
153
+ sys.stdout.flush()
154
+ time.sleep(0.05)
155
+ print("\n")
156
+ time.sleep(0.5)
157
+
158
+ print_success("Installation complete!")
159
+ print_info("Welcome to the AppForge ecosystem.")
160
+
161
+ print("\nGetting Started:")
162
+ print(" 1. `cd` into your project directory")
163
+ print(" 2. Run `appforge init` to begin\n")
164
+
165
+ show_argu()
166
+ sys.exit(0)
167
+
146
168
  def main():
147
169
  print_header()
148
170
 
@@ -16,7 +16,7 @@ def print_header():
16
16
 
17
17
  def print_footer():
18
18
  print(f"\n{GRAY}AppForge CLI")
19
- print(f"Built by AppForge Team [Maintainer - JuniorSir{RESET}\n")
19
+ print(f"Built by AppForge Team [Maintainer - JuniorSir]{RESET}\n")
20
20
 
21
21
  def print_success(msg):
22
22
  print(f"{GREEN}✔{RESET} {msg}")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: appforge-cli
3
- Version: 1.0.9
3
+ Version: 1.1.2
4
4
  Summary: Convert web, Flutter, and native apps into Android/iOS apps automatically using cloud builds.
5
5
  Author: AppForge Team
6
6
  Author-email: AppForge Team <juniorsir.bot@gmail.com>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "appforge-cli"
7
- version = "1.0.9"
7
+ version = "1.1.2"
8
8
  authors = [
9
9
  { name="AppForge Team", email="juniorsir.bot@gmail.com" },
10
10
  ]
@@ -2,7 +2,7 @@ from setuptools import setup
2
2
 
3
3
  setup(
4
4
  name="appforge",
5
- version="1.0.9",
5
+ version="1.1.2",
6
6
  description="Convert web apps into Android apps automatically using Capacitor and GitHub cloud builds.",
7
7
  author="AppForge Team",
8
8
  packages=["appforge"], # <-- CHANGE THIS LINE
File without changes