-
-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v1.0.3 Bug Fixes 🐛 Fix bug when you have no followers/following 🐛 Fix bug with filtering 🐛 Fix bug when user has a shop button 🐛 Fix bug where you would follow someone back if they already followed you 🐛 Fix bug where hashtag could not be found on compact screens 🐛 Fix bug with unfollow confirmation screen in new UI and simplifies check 🐛 Fix bug when there is no like button on screen Improvements ✅ Combine black and pyflakes into one workflowUnfollow supports range now
Improve clicking and double clicking function
Add ability to “small swipe” in case you only need to swipe a little 🐈 Add argument logging for better debugging 🐈 Add click location for better debugging 🐈 Clean up logging 📝 Clean remains of remove-mass-followers. This may be added back at some point New Features 🎁 Add update checking 🎁 Add example filter file 🎁 Add (disabled) debugging plugin Co-authored-by: Philip Ulrich <[email protected]> Co-authored-by: narkopolo <[email protected]> Co-authored-by: Arthur Silva <[email protected]> Co-authored-by: Alessandro Maggio <[email protected]> Co-authored-by: Dennis <[email protected]>
- Loading branch information
1 parent
233133d
commit 67cded7
Showing
23 changed files
with
792 additions
and
307 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: code-checker | ||
|
||
on: | ||
push: | ||
# only build each push to develop and master, other branches are built through pull requests | ||
branches: [develop, master] | ||
pull_request: | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone Repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '>=3.6' | ||
|
||
- name: Run black | ||
uses: psf/black@stable | ||
|
||
static-check: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.6, 3.7, 3.8] | ||
steps: | ||
- name: Clone Repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install Pyflakes | ||
run: | | ||
pip3 install --upgrade pip | ||
pip3 install pyflakes | ||
- name: Detect errors with pyflakes | ||
run: pyflakes . |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ screenshots | |
crashes | ||
filter.json | ||
whitelist.txt | ||
Pipfile | ||
Pipfile.lock | ||
.venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.