Skip to content

V2.2.1 #55

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 52 commits into from
Nov 13, 2023
Merged
Changes from 1 commit
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
8510b0d
add neetcode python solution to problems
zubyj Sep 22, 2023
06d8f61
add nav buttons
zubyj Sep 22, 2023
2b71e24
add video
zubyj Sep 22, 2023
e0d8ef4
add buttons to collapse video, add neetcode python solutions
zubyj Sep 22, 2023
5db272d
add code from github url
zubyj Sep 22, 2023
66b20b8
implement video, code discussion buttons that cycle between the three
zubyj Sep 23, 2023
9a2608c
hide other content when nav button is clicked
zubyj Sep 23, 2023
f9b819d
prevent navbar from appearing below when code btn clicked
zubyj Sep 23, 2023
d19fb94
add spacing to buttons, remove borders
zubyj Sep 24, 2023
3da0c95
prevent video & code from being duplicated when page is dynamically u…
zubyj Sep 24, 2023
f5ffd48
fix bugs, improve styling for solutions container
zubyj Sep 24, 2023
2b533a8
add video & code in right section
zubyj Sep 25, 2023
045bbf0
add video solutions
zubyj Sep 25, 2023
7293936
add elements before dscussion search bar
zubyj Sep 25, 2023
7aff5a1
if the code solution is added, dont add it again
zubyj Sep 25, 2023
913f617
fix position of nav buttons
zubyj Sep 25, 2023
7059fb9
fix code element showing in wrong section of page
zubyj Sep 25, 2023
2104366
add languages to json file
zubyj Sep 25, 2023
2fce7c7
for each langauge, add button to fetch code from github url
zubyj Sep 25, 2023
ebe8ffc
smaller font
zubyj Sep 25, 2023
c6a389a
rm console logs
zubyj Sep 25, 2023
a2c7e63
update classname for getting description, constraints, exmaples
zubyj Sep 25, 2023
a16e294
get correct classname for problem description
zubyj Sep 25, 2023
4e6d1e9
add support for c++, smaller lang buttons
zubyj Sep 26, 2023
c8dfdbe
add code button to the left of the code
zubyj Sep 26, 2023
8875bda
add language icons to each language button
zubyj Sep 26, 2023
4f5be27
add check mark when copy button clicked, change white borders to gree…
zubyj Sep 27, 2023
22aaa9b
rm company tags and problem/company data (copyrighted content)
zubyj Sep 28, 2023
0be9fa0
fix show examples, difficulty, adn rating by updating the query selec…
zubyj Sep 28, 2023
e9db5f7
rm console logs
zubyj Sep 28, 2023
0b710d6
update the version
zubyj Sep 28, 2023
fa0cbc9
add background color to nav buttons so its not invisible on light scr…
zubyj Sep 29, 2023
63f95b5
grab search bar after solutions tab is clicked
zubyj Oct 2, 2023
cde7bac
better query for getting the search bar
zubyj Oct 7, 2023
03442fb
add tags to new description, remove company frequency (copyrighted)
zubyj Oct 7, 2023
96ef3f3
readd company tags page
zubyj Oct 9, 2023
520d57b
remove company frequency data
zubyj Oct 9, 2023
937ccfc
rm company freq data
zubyj Oct 9, 2023
fa008ab
readd hide/show company tags in settings
zubyj Oct 10, 2023
d8210bb
rename json file to problem data
zubyj Oct 31, 2023
1f130ca
update version number
zubyj Oct 31, 2023
d87685d
stop the company tags from getting readded every time code editor is …
zubyj Nov 9, 2023
cf238ae
highlight the active button in the solutions tab
zubyj Nov 10, 2023
887ad2c
update error message when chatgpt auth needed
zubyj Nov 10, 2023
569fca7
update the settings icon
zubyj Nov 10, 2023
1133058
update home icon, fixhover button animation, update version number
zubyj Nov 10, 2023
d880971
keep settings btn active even when gpt not logged in
zubyj Nov 10, 2023
1a12d20
fix code button container from being duplicated
zubyj Nov 10, 2023
df1f078
fix, video hiding when the next, prev button is clicked, remove conso…
zubyj Nov 11, 2023
dc83fe7
smaller settings buttons, remove extra large font size
zubyj Nov 12, 2023
8827e5a
smaller buttons, icons, title
zubyj Nov 12, 2023
fd6f2b6
hide the video and code button if doesnt exist
zubyj Nov 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
prevent navbar from appearing below when code btn clicked
  • Loading branch information
zubyj committed Sep 23, 2023
commit f9b819df06a39e622408a97bef2370ac3fde9834
2 changes: 1 addition & 1 deletion src/content-script/update-solutions-tab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ async function addCodeSolution(title: string, frontend_id: number, language: str
const SOLUTIONS_TAB_INDEX = 0;
const solutionsTab = document.querySelectorAll('div.relative.flex.h-full.w-full')[SOLUTIONS_TAB_INDEX];
// append as second child of solutionstab
solutionsTab.insertBefore(codeElement, solutionsTab.firstChild);
solutionsTab.appendChild(codeElement);

} catch (error) {
console.error('Failed to fetch code:', error);
Expand Down