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.
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/PKG-INFO +1 -1
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge/cli.py +24 -2
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge/utils.py +1 -1
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge_cli.egg-info/PKG-INFO +1 -1
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/pyproject.toml +1 -1
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/setup.py +1 -1
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge/__init__.py +0 -0
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge/ai.py +0 -0
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge/capacitor.py +0 -0
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge/config.py +0 -0
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge/detector.py +0 -0
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge/github.py +0 -0
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge/knowledge_base.json +0 -0
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge_cli.egg-info/SOURCES.txt +0 -0
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge_cli.egg-info/dependency_links.txt +0 -0
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge_cli.egg-info/entry_points.txt +0 -0
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge_cli.egg-info/requires.txt +0 -0
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/appforge_cli.egg-info/top_level.txt +0 -0
- {appforge_cli-1.0.9 → appforge_cli-1.1.2}/setup.cfg +0 -0
|
@@ -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
|
|
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}")
|
|
@@ -2,7 +2,7 @@ from setuptools import setup
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="appforge",
|
|
5
|
-
version="1.
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|