Skip to content

Commit

Permalink
0.3.2
Browse files Browse the repository at this point in the history
 - Improved command argument handling for enhanced functionality.
 - Enhanced Docker run functionality for seamless execution.
 - Optimized Makefile run process for smoother workflow.
 - Updated hiphp-desktop commands to enhance user experience.
 - Refined hiphp-tk commands for improved functionality.
 - Streamlined installation process on Ubuntu OS.
 - Centralized command control and execution via 'main.py' file.
 - Updated help menu.
 - Fixed websites scanner on hiphp-cli.
 - Changed license from "Apache Software License" to "MIT License."
 - Addressed bug fixes and implemented performance improvements for a more reliable experience.

Signed-off-by: Boudjada Yasser <by.root96@gmail.com>
  • Loading branch information
yasserbdj96 committed May 25, 2023
1 parent 05cea3f commit c240fd7
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 35 deletions.
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#ko_fi: yasserbdj96
#liberapay: yasserbdj96
github: yasserbdj96
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'javascript', 'python' ]
language: [ 'javascript', 'python']
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Push To Docker
name: Docker-hub Build & Push

#on:
# push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gcr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Push To Github Container Registry
name: Github-Container Build & Push

#on:
# push:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/pipup.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions

name: Push To PYPI
name: PYPI Build & Push

# Controls when the action will run.
on:
Expand Down Expand Up @@ -30,12 +30,6 @@ jobs:
# Install requirements
- name: install requirements.txt
run: python -m pip install -r requirements.txt
- name: install requirements-pypi.txt
run: python -m pip install -r requirements-pypi.txt
- name: install hiphp-desktop/requirements-dst.txt
run: python -m pip install -r hiphp-desktop/requirements-dst.txt
- name: install hiphp-tk/requirements-tk.txt
run: python -m pip install -r hiphp-tk/requirements-tk.txt

# Install dependencies
- name: "Installs dependencies"
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/pypi-setup-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,5 @@ jobs:
run: python -m pip install --upgrade pip
- name: Install requirements
run: pip install -r requirements.txt
- name: Install pypi requirements
run: pip install -r requirements-pypi.txt
- name: Run setup.py File
run: python wrdir/setup.py install
2 changes: 0 additions & 2 deletions .github/workflows/pypi-setup-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,5 @@ jobs:
run: python -m pip install --upgrade pip
- name: Install requirements
run: pip install -r requirements.txt
- name: Install pypi requirements
run: pip install -r requirements-pypi.txt
- name: Run setup.py File
run: python wrdir/setup.py install
6 changes: 3 additions & 3 deletions .github/workflows/python-app-on-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
- name: Create Workspace Folder
run: mkdir -p wrdir && mkdir -p wrdir/hiphp
- name: Copy Files & folders to Workspace Folder
run: cp -r hiphp/* wrdir/hiphp && cp run.py wrdir/run.py
run: cp -r hiphp/* wrdir/hiphp && cp main.py wrdir/main.py
- name: pip Upgrade
run: python -m pip install --upgrade pip
- name: Install requirements
run: pip install -r requirements.txt
- name: Run
run: python wrdir/run.py
- name: Test hiphp
run: python wrdir/main.py --key="123" --url="https://www.google.com/"
6 changes: 3 additions & 3 deletions .github/workflows/python-app-on-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
- name: Create Workspace Folder
run: mkdir -p wrdir && mkdir -p wrdir/hiphp
- name: Copy Files & folders to Workspace Folder
run: cp -r hiphp/* wrdir/hiphp && cp run.py wrdir/run.py
run: cp -r hiphp/* wrdir/hiphp && cp main.py wrdir/main.py
- name: pip Upgrade
run: python -m pip install --upgrade pip
- name: Install requirements
run: pip install -r requirements.txt
- name: Run
run: python wrdir/run.py
- name: Test hiphp
run: python wrdir/main.py --key="123" --url="https://www.google.com/"
6 changes: 3 additions & 3 deletions .github/workflows/python-app-on-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
- name: Create Workspace Folder
run: mkdir -p wrdir && mkdir -p wrdir/hiphp
- name: Copy Files & folders to Workspace Folder
run: cp -r hiphp/* wrdir/hiphp && cp run.py wrdir/run.py
run: cp -r hiphp/* wrdir/hiphp && cp main.py wrdir/main.py
- name: pip Upgrade
run: python -m pip install --upgrade pip
- name: Install requirements
run: pip install -r requirements.txt
- name: Run
run: python wrdir/run.py
- name: Test hiphp
run: python wrdir/main.py --key="123" --url="https://www.google.com/"
6 changes: 0 additions & 6 deletions .github/workflows/test-requirements-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ jobs:
run: python -m pip install --upgrade pip
- name: install requirements.txt
run: python -m pip install -r requirements.txt
- name: install requirements-pypi.txt
run: python -m pip install -r requirements-pypi.txt
- name: install hiphp-desktop/requirements-dst.txt
run: python -m pip install -r hiphp-desktop/requirements-dst.txt
- name: install hiphp-tk/requirements-tk.txt
run: python -m pip install -r hiphp-tk/requirements-tk.txt
- name: install hiphp-linux/requirements-linux.txt
run: python -m pip install -r hiphp-linux/requirements-linux.txt

6 changes: 0 additions & 6 deletions .github/workflows/test-requirements-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,5 @@ jobs:
run: python -m pip install --upgrade pip
- name: install requirements.txt
run: python -m pip install -r requirements.txt
- name: install requirements-pypi.txt
run: python -m pip install -r requirements-pypi.txt
- name: install hiphp-desktop/requirements-dst.txt
run: python -m pip install -r hiphp-desktop/requirements-dst.txt
- name: install hiphp-tk/requirements-tk.txt
run: python -m pip install -r hiphp-tk/requirements-tk.txt
- name: install hiphp-win/requirements-win.txt
run: python -m pip install -r hiphp-win/requirements-win.txt

1 comment on commit c240fd7

@vercel
Copy link

@vercel vercel bot commented on c240fd7 May 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

hiphp – ./

hiphp-yasserbdj96.vercel.app
hiphp-git-main-yasserbdj96.vercel.app
hiphp.vercel.app

Please sign in to comment.