InstaAddict 1.0.1__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.
Files changed (76) hide show
  1. instaaddict-1.0.1/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
  2. instaaddict-1.0.1/.github/ISSUE_TEMPLATE/feature_request.md +11 -0
  3. instaaddict-1.0.1/.github/PULL_REQUEST_TEMPLATE.md +36 -0
  4. instaaddict-1.0.1/.gitignore +23 -0
  5. instaaddict-1.0.1/.python-version +1 -0
  6. instaaddict-1.0.1/CHANGELOG.md +493 -0
  7. instaaddict-1.0.1/CODE_OF_CONDUCT.md +46 -0
  8. instaaddict-1.0.1/CONTRIBUTING.md +195 -0
  9. instaaddict-1.0.1/DEPLOYMENT.MD +8 -0
  10. instaaddict-1.0.1/FUNDING.yml +4 -0
  11. instaaddict-1.0.1/GramAddict/__init__.py +10 -0
  12. instaaddict-1.0.1/GramAddict/__main__.py +161 -0
  13. instaaddict-1.0.1/GramAddict/core/__init__.py +0 -0
  14. instaaddict-1.0.1/GramAddict/core/bot_flow.py +425 -0
  15. instaaddict-1.0.1/GramAddict/core/config.py +219 -0
  16. instaaddict-1.0.1/GramAddict/core/decorators.py +144 -0
  17. instaaddict-1.0.1/GramAddict/core/device_facade.py +743 -0
  18. instaaddict-1.0.1/GramAddict/core/download_from_github.py +263 -0
  19. instaaddict-1.0.1/GramAddict/core/filter.py +759 -0
  20. instaaddict-1.0.1/GramAddict/core/handle_sources.py +890 -0
  21. instaaddict-1.0.1/GramAddict/core/interaction.py +1034 -0
  22. instaaddict-1.0.1/GramAddict/core/log.py +152 -0
  23. instaaddict-1.0.1/GramAddict/core/navigation.py +120 -0
  24. instaaddict-1.0.1/GramAddict/core/persistent_list.py +56 -0
  25. instaaddict-1.0.1/GramAddict/core/plugin_loader.py +46 -0
  26. instaaddict-1.0.1/GramAddict/core/report.py +206 -0
  27. instaaddict-1.0.1/GramAddict/core/resources.py +245 -0
  28. instaaddict-1.0.1/GramAddict/core/scroll_end_detector.py +77 -0
  29. instaaddict-1.0.1/GramAddict/core/session_state.py +323 -0
  30. instaaddict-1.0.1/GramAddict/core/storage.py +254 -0
  31. instaaddict-1.0.1/GramAddict/core/utils.py +804 -0
  32. instaaddict-1.0.1/GramAddict/core/views.py +2207 -0
  33. instaaddict-1.0.1/GramAddict/plugins/__init__.py +0 -0
  34. instaaddict-1.0.1/GramAddict/plugins/action_unfollow_followers.py +570 -0
  35. instaaddict-1.0.1/GramAddict/plugins/cloned_app.py +25 -0
  36. instaaddict-1.0.1/GramAddict/plugins/core_arguments.py +411 -0
  37. instaaddict-1.0.1/GramAddict/plugins/data_analytics.py +40 -0
  38. instaaddict-1.0.1/GramAddict/plugins/interact_blogger.py +258 -0
  39. instaaddict-1.0.1/GramAddict/plugins/interact_blogger_followers.py +196 -0
  40. instaaddict-1.0.1/GramAddict/plugins/interact_blogger_post_likers.py +184 -0
  41. instaaddict-1.0.1/GramAddict/plugins/interact_feed.py +147 -0
  42. instaaddict-1.0.1/GramAddict/plugins/interact_hashtag_likers.py +199 -0
  43. instaaddict-1.0.1/GramAddict/plugins/interact_hashtag_posts.py +192 -0
  44. instaaddict-1.0.1/GramAddict/plugins/interact_place_likers.py +194 -0
  45. instaaddict-1.0.1/GramAddict/plugins/interact_place_posts.py +185 -0
  46. instaaddict-1.0.1/GramAddict/plugins/like_from_urls.py +137 -0
  47. instaaddict-1.0.1/GramAddict/plugins/plugin.example +38 -0
  48. instaaddict-1.0.1/GramAddict/plugins/remove_followers.py +122 -0
  49. instaaddict-1.0.1/GramAddict/plugins/telegram.py +249 -0
  50. instaaddict-1.0.1/GramAddict/version.py +2 -0
  51. instaaddict-1.0.1/LICENSE +23 -0
  52. instaaddict-1.0.1/PKG-INFO +335 -0
  53. instaaddict-1.0.1/README.md +301 -0
  54. instaaddict-1.0.1/config-examples/blacklist.txt +2 -0
  55. instaaddict-1.0.1/config-examples/comments_list.txt +15 -0
  56. instaaddict-1.0.1/config-examples/config.yml +138 -0
  57. instaaddict-1.0.1/config-examples/filters.yml +63 -0
  58. instaaddict-1.0.1/config-examples/pm_list.txt +4 -0
  59. instaaddict-1.0.1/config-examples/telegram.yml +6 -0
  60. instaaddict-1.0.1/config-examples/whitelist.txt +2 -0
  61. instaaddict-1.0.1/extra/configs-loader/configs-list.yml +6 -0
  62. instaaddict-1.0.1/extra/configs-loader/configs_loader.py +45 -0
  63. instaaddict-1.0.1/pyproject.toml +42 -0
  64. instaaddict-1.0.1/requirements.txt +11 -0
  65. instaaddict-1.0.1/res/demo.gif +0 -0
  66. instaaddict-1.0.1/res/discord.png +0 -0
  67. instaaddict-1.0.1/res/logo.png +0 -0
  68. instaaddict-1.0.1/res/logo2.png +0 -0
  69. instaaddict-1.0.1/res/telegram-reports.png +0 -0
  70. instaaddict-1.0.1/res/telegram.png +0 -0
  71. instaaddict-1.0.1/run.py +3 -0
  72. instaaddict-1.0.1/test/mock_data/sessions.json +142 -0
  73. instaaddict-1.0.1/test/test_load_txt.py +24 -0
  74. instaaddict-1.0.1/test/test_telegram.py +182 -0
  75. instaaddict-1.0.1/test/txt/txt_empty.txt +5 -0
  76. instaaddict-1.0.1/test/txt/txt_ok.txt +6 -0
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: Bug Report
3
+ about: Report a bug encountered while operating GramAdict
4
+ labels: kind/bug
5
+
6
+ ---
7
+ <!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! -->
8
+
9
+
10
+ **What happened**:
11
+
12
+ **What you expected to happen**:
13
+
14
+ **How to reproduce it (as minimally and precisely as possible)**:
15
+
16
+ **Anything else we need to know?**:
17
+
18
+ **Environment**:
19
+ - GramAddict version:
20
+ - Device Model/Emulator Type:
21
+ - Android Version:
22
+ - Instagram Version:
23
+ - Discord Ticket ID: *(if submitting crash log)
24
+
25
+
26
+ Relevant Logs:
27
+ - activate debug mode in confing.yml if you want to paste from the console, otherwise attach the log file from the logs folder
28
+
29
+
30
+
31
+ <br /><br /><br />
32
+ ### *Note: if you have a crash log, please do not attach the archive here as this is not a secure place to upload the sensitive data inside. Please open a ticket in [Discord](https://discord.com/invite/66zWWCDM7x) in #lobby and provide the ticket ID here.
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: Enhancement Request
3
+ about: Suggest an enhancement to the GramAddict project
4
+ labels: kind/feature
5
+
6
+ ---
7
+ <!-- Please only use this template for submitting enhancement requests -->
8
+
9
+ **What would you like to be added**:
10
+
11
+ **Why is this needed**:
@@ -0,0 +1,36 @@
1
+ # Description
2
+
3
+ Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
4
+
5
+ Fixes # (issue)
6
+
7
+ ## Type of change
8
+
9
+ Please delete options that are not relevant.
10
+
11
+ - [ ] Bug fix (non-breaking change which fixes an issue)
12
+ - [ ] New feature (non-breaking change which adds functionality)
13
+ - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
14
+ - [ ] This change requires a documentation update
15
+
16
+ # How Has This Been Tested?
17
+
18
+ Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
19
+
20
+ - [ ] Test A
21
+ - [ ] Test B
22
+
23
+ **Test Configuration**:
24
+ * Device Model or Emulator:
25
+ * Android Verison:
26
+ * Instagram Version:
27
+
28
+ # Checklist:
29
+
30
+ - [ ] My code follows the style guidelines of this project
31
+ - [ ] I have performed a self-review of my own code
32
+ - [ ] I have commented my code, particularly in hard-to-understand areas
33
+ - [ ] I have made corresponding changes to the documentation
34
+ - [ ] My changes generate no new warnings
35
+ - [ ] I have tested my code in every way I can think of to prove my fix is effective or that my feature works
36
+ - [ ] Any dependent changes have been merged and published in downstream modules
@@ -0,0 +1,23 @@
1
+ /build
2
+ /dump
3
+ /dist
4
+ /gramaddict.egg-info
5
+ /.idea
6
+ /.vscode
7
+ *.pyc
8
+ .DS_Store
9
+ Pipfile
10
+ Pipfile.lock
11
+ *.pdf
12
+ *.mp4
13
+ *.log*
14
+ *.ini
15
+ *.db
16
+ *.sql
17
+ *.zip
18
+ .venv/
19
+
20
+ # Account configs and data (sensitive)
21
+ /accounts/
22
+ /crashes/
23
+ /logs/
@@ -0,0 +1 @@
1
+ 3.9.18
@@ -0,0 +1,493 @@
1
+ # Changelog
2
+
3
+ ## 1.0.1 (2025-07-18) - First InstaAddict Release
4
+
5
+ This is the first production release of **InstaAddict**, a continuation of the [GramAddict](https://github.com/GramAddict/bot) project.
6
+
7
+ ### New
8
+ - Forked and rebranded from GramAddict to InstaAddict
9
+ - Updated to support Instagram version 438.0.0.28.88
10
+ - Updated profile header resource IDs to match new Instagram UI (posts, followers, following counts)
11
+ - Added support for new `profile_header_familiar_*` resource ID patterns
12
+ - Updated `.gitignore` to properly exclude sensitive account configs, crash dumps, and logs
13
+
14
+ ### Changed
15
+ - All user-facing branding changed from GramAddict to InstaAddict
16
+ - GitHub references updated to `https://github.com/joeahkim/InstaAddict`
17
+ - Version reset to 1.0.1 for the InstaAddict fork
18
+
19
+ ---
20
+
21
+ ## Previous GramAddict Releases
22
+
23
+ ## 3.2.12 (2024-03-22)
24
+ ### Fix
25
+ - handle NoneType for owner_name in feel job
26
+ - wrong indentation for hashtag check in feed job
27
+ ## 3.2.11 (2024-03-17)
28
+ ## New Features
29
+ - OCR to read the post owner if the obj is missing in the feed job (optional)
30
+ - `restart-atx-agent: bool` to restart the atx-agent before starting the bot
31
+ - `kill-atx-agent: bool` to kill the atx-agent when the script ends
32
+ ### Fix
33
+ - feed sponsored detection
34
+ - Telegram wrong keys and order
35
+ ## Misc
36
+ - message in telegram now looks more like it did before pandas were removed
37
+ ## Test
38
+ - improved telegram test
39
+ ## 3.2.10 (2024-03-09)
40
+ ### Fix
41
+ - account selecting
42
+ - function specialization for load and clean txt file
43
+ - better logging for the user
44
+ ### Others
45
+ - test for load and clean txt file
46
+ ## 3.2.9 (2024-02-10)
47
+ ### Fix
48
+ - remove pandas as dependency for telegram reports
49
+ - show when config file and filter file have been saved
50
+ - better logging information
51
+ ## 3.2.8 (2024-01-24)
52
+ ### Fix
53
+ - removed the language check
54
+ ## 3.2.7 (2023-09-30)
55
+ ### Fix
56
+ - using the monkey approach until this bug is fixed https://github.com/openatx/atx-agent/pull/111
57
+ ## 3.2.6 (2023-09-28)
58
+ ### Fix
59
+ - get rid of Activity class when starting app
60
+ ## 3.2.5 (2023-07-23)
61
+ ### Fix
62
+ - account selection with the little arrow instead of clicking on the account name
63
+ ### Others
64
+ - display a warning if the user tries to use an untested version of IG
65
+ ## 3.2.4 (2023-04-07)
66
+ ### Fix
67
+ - fix selecting account if you have a lof of them, and it's not visible
68
+ - screen timeout checking for 'always on devices' (for example emulators)
69
+ ### Others
70
+ - config loader in 'extra' folder
71
+ ## 3.2.3 (2022-06-23)
72
+ ### Others
73
+ - allow to pass device to dump
74
+ - allot to don't to kill the demon while dumping
75
+ ## 3.2.2 (2022-04-28)
76
+ ### Fix
77
+ - deprecated method uiautomator2 side that cause that error:
78
+ >AttributeError: 'Session or Device' object has no attribute '_is_alive'
79
+ ## 3.2.1 (2022-03-25)
80
+ ### Fix
81
+ - default value for `unfollow-delay` was an integer instead of a string
82
+ - story_watcher returned Optional\[Union\[bool, int]] instead of int
83
+ ## 3.2.0 (2022-03-23)
84
+ ### New Features
85
+ - `unfollow` and `unfollow-non-followers` now check for when you last interacted with each user. Using the argument `unfollow-delay` you can specify the number of days that have to have passed since the last interaction
86
+ - after watching a story, the bot will now like it
87
+ - with `count-app-crashes` you can tell the bot to count app crashes as a crash for `total-crashes-limit` (default False)
88
+ - using the argument `remove-followers-from-file`, the bot can now remove followers following you from a *.txt
89
+ ### Fix
90
+ - when interacting with the last picture of a profile, the bot could crash
91
+ - following suggested people instead of target account
92
+ - missing block detection for full screen mode (video)
93
+ - profile is loaded false negative
94
+ - avoid re-watching content if like fails
95
+ ### Performance improvements
96
+ - new way to search for targets in search menu
97
+ - no need to see limits for PM if you're not sending them
98
+ - code has been cleaned and some functions have been merged
99
+ - inspect current view for list of users, this will avoid pressing on bottom bar
100
+ - set the screen timeout to 5 minutes if it's less than this value to avoid screen off issues
101
+ - store the target source in json instead of a duplicate of the username
102
+ - store request and followed status in json (it uses to be only followed)
103
+ - using `app_current` instead `info` for checking if the app is opened
104
+ - check for crash dialog when app crashes
105
+ - check if it's a live video before opening a story
106
+ - for actions with files (`interact-from-file`, `unfollow-form-file` and `remove-followers-from-file`) the script will look inside your account folder and no longer where you start the bot from
107
+ ### Others
108
+ - bump version of UIA2
109
+ - trim logs in crash reports
110
+ - put your username inside the config when creating it with `gramaddict init username`
111
+ - default value for `can-reinteract-after` is now "None" instead of "-1"
112
+ - better logs when skipping profiles
113
+ ## 3.1.5 (2022-02-07)
114
+ ### Fix
115
+ - `app_id` was None for them who used the tool in a fancy way (without using config files)
116
+ ## 3.1.4 (2022-02-07)
117
+ ### Fix
118
+ - avoid a problem with `check_if_crash_popup_is_there` and `choose_cloned_app` being decorated before starting IG
119
+ ## 3.1.3 (2022-02-06)
120
+ ### Fix
121
+ - missing parenthesis in calling a method
122
+ ## 3.1.2 (2022-02-06)
123
+ ### Fix
124
+ - find the profile icon even with the different interface
125
+ - wrong arguments for stop_bot function
126
+ - workaround for avoiding story watching crash due to a bug of UIA2
127
+ ### Performance improvements
128
+ - check if IG is opened when we try to find an element, raise an exception if it's not true (I used a decorator, for fun :D)
129
+ - simplify some functions
130
+ ### Others
131
+ - move close_keyboard method to universal class
132
+ - a lot of typos
133
+ - some types hint
134
+ ## 3.1.1 (2022-02-01)
135
+ ### Fix
136
+ - inconsistent way to store datetime in json
137
+ ## 3.1.0 (2022-01-31)
138
+ ### New Features
139
+ - new argument `dont-type` allows writing text by pasting it instead of typing it
140
+ - you can go next line in your PM by adding `\n` in the text
141
+ ### Fix
142
+ - the bot wasn't able to confirm the like if the button was not visible in the view
143
+ ### Others
144
+ - don't show countdown in debug mode
145
+ ## 3.0.5 (2022-01-26)
146
+ ### Fix
147
+ - avoid pressing on music tab instead of hashtags (this bug was only for small screens)
148
+ ### Others
149
+ - the bot restarts after a crash, except for some scenarios that will be highlighted
150
+ ## 3.0.4 (2022-01-17)
151
+ ### Fix
152
+ - carousel mid-point calculation was wrong (typo)
153
+ ## 3.0.3 (2022-01-17)
154
+ ### Fix
155
+ - in the new version (217..) the element for sorting following list has changed
156
+ ### Performance improvements
157
+ - better info when min-following is used in unfollow actions, or you're trying to unfollow more people than the number you're following
158
+ - handle of malformed data in telegram-reports
159
+ ## 3.0.2 (2022-01-10)
160
+ ### Fix
161
+ - "back" in "Follow Back" is not uppercase anymore
162
+ ### Performance improvements
163
+ - better handling for not loaded profiles
164
+ ## 3.0.1 (2022-01-05)
165
+ ### Fix
166
+ - missing argument in analytics report
167
+
168
+ ### Others
169
+ - new logo for the readme.md
170
+ - added some useful info for the user
171
+
172
+ ## 3.0.0 (2022-01-05)
173
+ ### New Features
174
+
175
+ - use the cloned app instead the official, if the dialog box get displayed (this is currently supporter for MIUI devices)
176
+ - new filter options: *interact_if_public* and *interact_if_private*
177
+ - *interact_only_private* has been removed, delete it from your filters.yml
178
+
179
+ ### Performance improvements
180
+
181
+ - limit check was wrong in interact_blogger plugin
182
+ - feed job was ignoring limits
183
+ - don't throw an error if config files \*.yaml instead of \*.yml are used
184
+ - likes_limit was referring to total_likes_limit and not current_likes_limit (that caused an error if you specify an interval)
185
+
186
+ ### Performance improvements
187
+
188
+ - jobs have been split in "active-" and "unfollow-" jobs. That means, for example, that the bot won't stop the activity if it reached the likes limit, and you scheduled to unfollow.
189
+ - you can pass how many users have to be processed when working with \*.text (unfollow-from-list and interact-from-list)
190
+ - bot flow improved
191
+ - feed job improvements
192
+ - looking for description improvements
193
+ - better handle of empty biographies
194
+ - showing session ending conditions at bot start
195
+ - countdown before starting, so you can check that everything is ok (filters and ending conditions)
196
+ - before starting, the bot will tell you the filters you are going to use (there is no spell check there, if you wrote them wrong they will be displayed there but not get considered)
197
+ - disable head notifications while the bot is running
198
+ - removed unnecessary argument in check_limit function
199
+ - removed some unnecessary classes in story view
200
+ - move Filter instance outside of plugins
201
+ ## 2.10.6 (2021-11-24)
202
+
203
+ #### Performance improvements
204
+
205
+ * the parsing of the number of posts / followers / following could fail for someone
206
+
207
+ Full set of changes: [`2.10.4...2.10.6`](https://github.com/GramAddict/bot/compare/2.10.4...2.10.6)
208
+ ## 2.10.5 (2021-11-18)
209
+
210
+ #### Fixes
211
+
212
+ * 'NoneType' object has no attribute '_is_post_liked'
213
+ #### Others
214
+
215
+ * removed a typo
216
+
217
+ Full set of changes: [`2.10.4...2.10.5`](https://github.com/GramAddict/bot/compare/2.10.4...2.10.5)
218
+
219
+ ## 2.10.4 (2021-11-08)
220
+
221
+ #### Fixes
222
+
223
+ * scraped is now counted as successful interaction
224
+
225
+ Full set of changes: [`2.10.3...2.10.4`](https://github.com/GramAddict/bot/compare/2.10.3...2.10.4)
226
+
227
+ ## 2.10.3 (2021-11-06)
228
+
229
+ #### Fixes
230
+
231
+ * the bot did not inform about the skip in case of the filter on mutual friends or on the link in bio
232
+ * false positive for link check in bio
233
+
234
+ Full set of changes: [`2.10.2...2.10.3`](https://github.com/GramAddict/bot/compare/2.10.2...2.10.3)
235
+
236
+ ## 2.10.2 (2021-11-06)
237
+
238
+ #### Fixes
239
+
240
+ * link in bio object exists even if it's empty
241
+
242
+ Full set of changes: [`2.10.1...2.10.2`](https://github.com/GramAddict/bot/compare/2.10.1...2.10.2)
243
+
244
+ ## 2.10.1 (2021-10-31)
245
+
246
+ #### Fixes
247
+
248
+ * someone in the world has a " ’ " as thousands separator instead of " , "
249
+
250
+ Full set of changes: [`2.10.0...2.10.1`](https://github.com/GramAddict/bot/compare/2.10.0...2.10.1)
251
+
252
+ ## 2.10.0 (2021-10-27)
253
+
254
+ #### New Features
255
+
256
+ * you can control if comment carousels
257
+ * support for connect_adb_wifi uia2 method
258
+ * support for watching videos and check for already liked posts
259
+ #### Fixes
260
+
261
+ * trying to close the android pop-up if ig crashes
262
+ * looking for the like button on the following video instead of the one being played
263
+ * comment fails on some media types
264
+ * checking media_type could fail
265
+ * empty files in unfollow from list job
266
+ * unfollow from list loop
267
+ * removed unexpected keyword argument in getFollowinCount method
268
+ * method connect_adb_wifi contained some errors
269
+ * was being imported nan by numpy instead of the math module
270
+ * ig is not opened but the bot tries to do operations
271
+ #### Performance improvements
272
+
273
+ * video recording
274
+ * posts-from-file job improved and fixed
275
+ * little improvements to the module mode
276
+
277
+ Full set of changes: [`2.9.2...2.10.0`](https://github.com/GramAddict/bot/compare/2.9.2...2.10.0)
278
+
279
+ ## 2.9.2 (2021-10-06)
280
+
281
+ #### Fixes
282
+
283
+ * other incompatibilities in the latest IG version
284
+
285
+ Full set of changes: [`2.9.1...2.9.2`](https://github.com/GramAddict/bot/compare/2.9.1...2.9.2)
286
+
287
+ ## 2.9.1 (2021-10-06)
288
+
289
+ #### New Features
290
+
291
+ * module version thanks to @patbengr
292
+ * if a username in *.txt file is not found, it will be appended to a *_not_found.txt
293
+ * from now, you can customize the session ending conditions
294
+ #### Fixes
295
+
296
+ * compatibility with IG: 208.0.0.32.135
297
+ * cannot check the language of Ig if not at the top of the account
298
+ * handle an exception in case you start the bot without specifying the config file
299
+ * it could happen that you are not at the top of your main profile in some circumstances
300
+ #### Performance improvements
301
+
302
+ * clean code for open and close ig
303
+
304
+ Full set of changes: [`2.9.0...2.9.1`](https://github.com/GramAddict/bot/compare/2.9.0...2.9.1)
305
+
306
+ ## 2.9.0 (2021-08-25)
307
+
308
+ #### New Features
309
+
310
+ * new argument to control how many skips in jobs with posts (e.g.: hashtag-post-top) are allowed before moving to another source / job
311
+ * new job to unfollow people who are following you
312
+ * new filter for skipping accounts with banned biography language
313
+ #### Performance improvements
314
+
315
+ * improved readability of the code and correct some typos
316
+ * moving sibling folders of run.py will no longer executed automatically
317
+
318
+ Full set of changes: [`2.8.0...2.9.0`](https://github.com/GramAddict/bot/compare/2.8.0...2.9.0)
319
+
320
+ ## 2.8.0 (2021-08-04)
321
+
322
+ #### New Features
323
+
324
+ * new filters: 'skip_if_link_in_bio: true/false' and 'mutual_friends: a_number' min count
325
+ * new feature added: pre- and post-script execution
326
+
327
+ Full set of changes: [`2.7.7...2.8.0`](https://github.com/GramAddict/bot/compare/2.7.7...2.8.0)
328
+
329
+ ## 2.7.7 (2021-08-03)
330
+
331
+ #### Fixes
332
+
333
+ * place first post not found [#208](https://github.com/GramAddict/bot/issues/208)
334
+ * replace detect-block with disable-block-detection
335
+ #### Performance improvements
336
+
337
+ * removed unneeded class and sort imports
338
+
339
+ Full set of changes: [`2.7.6...2.7.7`](https://github.com/GramAddict/bot/compare/2.7.6...2.7.7)
340
+
341
+ ## 2.7.6 (2021-07-31)
342
+
343
+ #### Fixes
344
+
345
+ * missing resource id for sorting following list
346
+
347
+ Full set of changes: [`2.7.5...2.7.6`](https://github.com/GramAddict/bot/compare/2.7.5...2.7.6)
348
+
349
+ ## 2.7.5 (2021-07-30)
350
+
351
+ #### New Features
352
+
353
+ * new argument "detect_block: true/false" to enable/ disable block check after every action
354
+ #### Fixes
355
+
356
+ * a better way to sort following list [#207](https://github.com/GramAddict/bot/issues/207)
357
+ #### Performance improvements
358
+
359
+ * add debug info for swipes
360
+ #### Refactorings
361
+
362
+ * sort imports
363
+
364
+ Full set of changes: [`2.7.4...2.7.5`](https://github.com/GramAddict/bot/compare/2.7.4...2.7.5)
365
+
366
+ ## 2.7.4 (2021-07-25)
367
+
368
+ #### Fixes
369
+
370
+ * support for Ig v. 197.0.0.26.119
371
+
372
+ Full set of changes: [`2.7.3...2.7.4`](https://github.com/GramAddict/bot/compare/2.7.3...2.7.4)
373
+
374
+ ## 2.7.3 (2021-07-14)
375
+
376
+ #### Fixes
377
+
378
+ * sometimes the bot press on 'Switch IME' instead of open your profile
379
+ * automatic change in English locale stopped working
380
+
381
+ Full set of changes: [`2.7.2...2.7.3`](https://github.com/GramAddict/bot/compare/2.7.2...2.7.3)
382
+
383
+ ## 2.7.2 (2021-07-14)
384
+
385
+ #### Fixes
386
+
387
+ * bug in open post container when someone in your 'following list' has also liked the post
388
+ #### Performance improvements
389
+
390
+ * lowered a little the swipe up in sorting `Following accounts`
391
+
392
+ Full set of changes: [`2.7.1...2.7.2`](https://github.com/GramAddict/bot/compare/2.7.1...2.7.2)
393
+
394
+ ## 2.7.1 (2021-07-13)
395
+
396
+ #### New Features
397
+
398
+ * you can dump your current screen with that command `gramaddict dump`
399
+ #### Performance improvements
400
+
401
+ * we don't need to click on an obj if we are already on it
402
+
403
+ Full set of changes: [`2.7.0...2.7.1`](https://github.com/GramAddict/bot/compare/2.7.0...2.7.1)
404
+
405
+ ## 2.7.0 (2021-07-12)
406
+
407
+ #### New Features
408
+
409
+ * you can use spintax for comments and PM from now
410
+ #### Fixes
411
+
412
+ * forgot to remove 'time_left' when calling print_telegram_reports at the end of all sessions
413
+ * in config-examples forgot 'comment_blogger' and fix typo in 'comment_blogger_following'
414
+
415
+ Full set of changes: [`2.6.5...2.7.0`](https://github.com/GramAddict/bot/compare/2.6.5...2.7.0)
416
+
417
+ ## 2.6.5 (2021-07-06)
418
+
419
+ #### Fixes
420
+
421
+ * the count of items in the carousels stopped at the first match
422
+ * from now on, every type of interaction is counted as successful and not just likes
423
+
424
+ Full set of changes: [`2.6.4...2.6.5`](https://github.com/GramAddict/bot/compare/2.6.4...2.6.5)
425
+
426
+ ## 2.6.4 (2021-07-01)
427
+
428
+ #### Fixes
429
+
430
+ * telegram-reports when out of working hours crashed
431
+ #### Performance improvements
432
+
433
+ * improve update checking
434
+ #### Docs
435
+
436
+ * text improvement and typo corrections
437
+
438
+ Full set of changes: [`2.6.3...2.6.4`](https://github.com/GramAddict/bot/compare/2.6.3...2.6.4)
439
+
440
+ ## 2.6.3 (2021-06-26)
441
+
442
+ #### Fixes
443
+
444
+ * time left in telegram-reports was wrong
445
+
446
+ Full set of changes: [`2.6.2...2.6.3`](https://github.com/GramAddict/bot/compare/2.6.2...2.6.3)
447
+
448
+ ## 2.6.2 (2021-06-25)
449
+
450
+ #### Fixes
451
+
452
+ * there was a problem with likers list
453
+ * there was a problem with the way I moved the reports at the end of sessions
454
+ #### Performance improvements
455
+
456
+ * the bot can recognize hashtag suggestions in feed
457
+ * telegram-reports improved
458
+ #### Docs
459
+
460
+ * typo in readme
461
+
462
+ Full set of changes: [`2.6.1...2.6.2`](https://github.com/GramAddict/bot/compare/2.6.1...2.6.2)
463
+
464
+ ## 2.6.1 (2021-06-24)
465
+
466
+ #### Performance improvements
467
+
468
+ * we can use an entry point from now
469
+ #### Docs
470
+
471
+ * correct a typo in telegram-reports
472
+ * improved the README
473
+
474
+ Full set of changes: [`2.6.0...2.6.1`](https://github.com/GramAddict/bot/compare/2.6.0...2.6.1)
475
+
476
+ ## 2.6.0 (2021-06-24)
477
+
478
+ #### New Features
479
+
480
+ * you can run GramAddict from the command line for initializing your account folder with all the files needed
481
+ * add support for allow re-interaction after a given amount of hours
482
+ #### Fixes
483
+
484
+ * too many `filters.yml is not loaded`
485
+ * telegram-reports typo in report
486
+ * add support for viewers count where likes count is missing
487
+ * browse the carousel could fail in some circumstances
488
+ #### Docs
489
+
490
+ * completely rewrote the README.md
491
+ #### Others
492
+
493
+ * donation alert when bot stops by pressing CTRL+C
@@ -0,0 +1,46 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ ## Our Standards
8
+
9
+ Examples of behavior that contributes to creating a positive environment include:
10
+
11
+ * Using welcoming and inclusive language
12
+ * Being respectful of differing viewpoints and experiences
13
+ * Gracefully accepting constructive criticism
14
+ * Focusing on what is best for the community
15
+ * Showing empathy towards other community members
16
+
17
+ Examples of unacceptable behavior by participants include:
18
+
19
+ * The use of sexualized language or imagery and unwelcome sexual attention or advances
20
+ * Trolling, insulting/derogatory comments, and personal or political attacks
21
+ * Public or private harassment
22
+ * Publishing others' private information, such as a physical or electronic address, without explicit permission
23
+ * Other conduct which could reasonably be considered inappropriate in a professional setting
24
+
25
+ ## Our Responsibilities
26
+
27
+ Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28
+
29
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30
+
31
+ ## Scope
32
+
33
+ This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34
+
35
+ ## Enforcement
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team via the [Discord Server](https://discord.com/invite/NK8PNEFGFF). Please direct them to any of the project owners via DM. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38
+
39
+ Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40
+
41
+ ## Attribution
42
+
43
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [https://contributor-covenant.org/version/1/4][version]
44
+
45
+ [homepage]: https://contributor-covenant.org
46
+ [version]: https://contributor-covenant.org/version/1/4/