towfiqi
36ed4cf800
fix: Resolves AdWords integration issue.
2025-02-23 22:27:59 +06:00
towfiqi
c8601ebb84
Merge branch 'main' of https://github.com/towfiqi/serpbear
2025-02-23 22:26:55 +06:00
Towfiq I.
56d8b660c5
Merge pull request #273 from phoehnel/dev/thorw-error-on-empty-results
...
Add error message, if returned search HTML does not contain required elements
2025-02-23 22:23:04 +06:00
Pascal Höhnel
c34c8260c7
improve error message in UI on proxy use
2025-01-17 09:36:41 +01:00
Pascal Höhnel
cab8f518bb
also add result-check to proxy
2025-01-17 09:10:43 +01:00
Pascal Höhnel
6e47a6fba7
add error message, if returned HTML does not contain required elements
2025-01-17 08:24:03 +01:00
towfiqi
bf911b4e45
fix: resolves broken CDN images.
2024-12-10 20:18:06 +06:00
towfiqi
d7279512cf
chore(release): 2.0.6
2024-11-15 10:43:12 +06:00
towfiqi
4fef1a9abc
fix: Ensures Docker build uses matching npm package versions from package.json
2024-11-14 23:11:09 +06:00
towfiqi
aeed1f8559
fix: Resolves broken Docker build due to croner package version mismatch.
...
closes #247
2024-11-14 23:08:54 +06:00
towfiqi
12eac2b012
fix: Resolves Google Ads search volume data loading issue.
2024-11-14 18:31:40 +06:00
towfiqi
649f412303
fix: Resolves broken Proxy Scraper functionality.
...
closes #248
2024-11-14 18:30:56 +06:00
towfiqi
a2edabbdf9
chore: Upgrades vulnerable dependecies.
2024-11-14 18:28:43 +06:00
towfiqi
3690e97fe7
chore(release): 2.0.5
2024-11-12 16:29:07 +06:00
towfiqi
17fb2c40cc
fix: Resolves "Add Domain" UI confusion.
2024-11-12 16:27:32 +06:00
towfiqi
faa3519a29
fix: Fixes misaligned Keywords table UI content.
2024-11-12 16:23:44 +06:00
towfiqi
bc02c929ba
fix: Resolves broken Scrapingrobot scraper on new installs.
...
closes #243
2024-11-12 16:20:48 +06:00
towfiqi
d9d7c6347e
fix: Fixes broken scrape result issue for keywords with special characters.
...
closes #221
2024-11-12 09:18:40 +06:00
towfiqi
c5714c00ae
chore(release): 2.0.4
2024-11-10 12:54:43 +06:00
towfiqi
1bef7587cc
fix: Fixes Docker build issue.
2024-11-10 12:54:32 +06:00
towfiqi
5507cac07f
chore(release): 2.0.3
2024-11-10 10:31:27 +06:00
towfiqi
a74338fe15
feat: Displays Best position on mobile layout as well.
2024-11-09 21:44:04 +06:00
towfiqi
4c2f900d85
feat: Displays keyword's best position in email notification.
...
closes 202
2024-11-09 21:24:27 +06:00
towfiqi
040dab1517
fix: Fixes missing Search Console data in Email notification when its integrated through App settings.
2024-11-09 20:56:43 +06:00
towfiqi
29c455ea56
chore: Adds descriptive errorlogging for Adwords integration.
2024-11-09 20:33:29 +06:00
towfiqi
42c5e2be07
feat: Makes Content width a little wider.
2024-11-09 20:32:28 +06:00
towfiqi
d3e3760527
feat: Adds the ability to show hide columns in tracked keywords table.
...
closes #224
2024-11-09 20:31:02 +06:00
towfiqi
7597210ca2
fix: Resolves incorrect search trend graph in Ideas section.
...
closes #219
2024-11-08 13:06:53 +06:00
towfiqi
4b8730e416
chore: removes unwanted file from merged PR
2024-11-08 12:30:08 +06:00
towfiqi
34dce13143
style: updates merged PR formatting
2024-11-08 12:29:24 +06:00
towfiqi
3786438662
feat: Ability to keywords for both mobile and desktop at once.
...
closes #60 , #66 , #199
2024-11-08 12:28:13 +06:00
towfiqi
f48288473e
fix: Fixes missing keyword city value in exported csv file.
...
closes #194
2024-11-08 10:25:16 +06:00
towfiqi
01b1b7b9e9
fix: Fixes incorrect position display in keyword detail view when position is above 100
2024-11-08 10:21:05 +06:00
towfiqi
a050536814
feat: Keywords Country filter now only shows relevant countries.
2024-11-08 10:14:12 +06:00
towfiqi
bc96dc7de5
fix: Resolves notification email's incorrect image size in some email clients.
...
closes #201
2024-11-08 09:56:54 +06:00
towfiqi
b35d333bfc
feat: Adds ability to set Notification Email From name.
...
closes #222
2024-11-07 21:15:12 +06:00
towfiqi
a09eb62f5a
feat: auto filter keywords if they already exist instead of throwing error.
...
closes #244
2024-11-07 21:04:57 +06:00
Towfiq I.
42a00dafad
Merge pull request #237 from JvB94/FixUnrankedAgainIssues2
...
When a keyword position was ranking under 100 and then it goes over 100 the keyword position was not being updated.
2024-11-07 21:01:00 +06:00
Towfiq I.
432fc6161c
Merge pull request #246 from lidarbtc/main
...
fix: Correct CTR calculation in InsightStats component
2024-11-07 20:13:46 +06:00
Towfiq I.
15a1224260
Merge pull request #235 from EpicKau/main
...
bugfix gsc data if specified in settings and not in .env
2024-11-07 19:51:29 +06:00
lidarbtc
232507e1ff
fix: Correct CTR calculation in InsightStats component
...
The CTR calculation was incorrectly summing up individual CTR values,
resulting in inflated percentages. Now calculates CTR properly by
dividing total clicks by total impressions.
Previous Implementation:
- CTR was calculated by adding up individual CTR percentages
- This resulted in artificially high CTR values
- For example: [10%, 15%, 20%] => 45% (incorrect)
New Implementation:
- CTR is now calculated using (total clicks / total impressions) * 100
- This provides the actual click-through rate across all data
- For example: (50 clicks / 1000 impressions) * 100 = 5% (correct)
This fix ensures accurate CTR reporting in the analytics dashboard.
Changes:
- Removed CTR accumulation from reducer
- Added proper CTR calculation based on total clicks and impressions
- Maintains better statistical accuracy in reporting
2024-10-26 21:33:31 +09:00
Joni
55fa7c0148
FixUnrankedAgainIssues2 - Solve wrong position is shown when a result goes unranked again
2024-08-19 20:54:13 +02:00
Parsmedia-Alex
8152d81804
bugfix gsc data if specified in settings and not in .env
2024-07-10 18:45:44 +02:00
Towfiq I
748dc8fc61
Merge pull request #212 from AntoineKM/main
...
fix: update scraping robot typo in README
2024-06-30 09:36:43 +06:00
Antoine Kingue
c24b63009c
fix: update scraping robot typo in README
2024-05-05 14:16:07 +02:00
Towfiq I
bf8fd5362b
Merge pull request #184 from sachatrauwaen/main
...
Resolve issue of duplicate entries in Dicover tab
2024-04-24 20:03:59 +06:00
Towfiq I
0c3068dc80
Merge pull request #193 from abdulla783/patch-2
...
Remove test variable as not defined and not required at all
2024-04-02 23:41:29 +06:00
Sacha
fde2f728aa
Merge branch 'towfiqi:main' into main
2024-03-28 20:42:51 +01:00
Sacha Trauwaen
40e027e1ec
1) wrap both theKeywordsCount and theKeywordsGrouped with useMemo
...
2) changing reduce and map together to make the code more readable.
3) ctr and position value rounded.
2024-03-28 20:41:50 +01:00
Abdulla Ansari
51da47f292
Remove test variable as not defined and not required at all
...
As per your request I have removed the test
2024-03-28 20:48:36 +05:30