Skip to content
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

Icon Manager #427

Open
wants to merge 38 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
6a09621
feat: added svg parser library for iconmanager
lazy-pr0grammer May 8, 2022
2176d99
feat: added icon_manager_fragment
lazy-pr0grammer May 8, 2022
9e0537f
feat: added icon_manager_item
lazy-pr0grammer May 8, 2022
823ebc9
feat: added create_vector_dialog
lazy-pr0grammer May 8, 2022
7661457
feat: added outline_sync_24
lazy-pr0grammer May 8, 2022
14ffc2e
feat: added iconmanagerfragment
lazy-pr0grammer May 8, 2022
9e3ecdf
Rename app/src/main/java/com/tyron/code/ui/IconManagerFragment.java t…
lazy-pr0grammer May 8, 2022
9ecb716
feat: added iconmanageradapter
lazy-pr0grammer May 8, 2022
0127b52
feat: added editvectordialogfragment
lazy-pr0grammer May 8, 2022
554f57b
feat: added openiconmanageraction
lazy-pr0grammer May 8, 2022
04e1bb4
feat: added openIconManagerAction
lazy-pr0grammer May 8, 2022
c02a6af
feat: added iconmanager string
lazy-pr0grammer May 8, 2022
cf5976f
feat: added iconmanager menu
lazy-pr0grammer May 8, 2022
fba4d3c
fix: solved compile related errors
lazy-pr0grammer May 8, 2022
3edaea4
fix: compile related errors
lazy-pr0grammer May 8, 2022
bf948bb
feat: added confirmation dialog while extracting files
lazy-pr0grammer May 8, 2022
cc5c92c
feat: fixed some compile related issues
lazy-pr0grammer May 8, 2022
bd231e6
feat: added icons.zip(conatains 5000+ icons)
lazy-pr0grammer May 8, 2022
ea9f86f
fix: fixed compile related errors
lazy-pr0grammer May 8, 2022
e85f738
fix: fixed compile related errors
lazy-pr0grammer May 8, 2022
cf62eca
fix: fixed compile related issues
lazy-pr0grammer May 8, 2022
c63531b
fix: removed compile related errors
lazy-pr0grammer May 8, 2022
13698f8
fix: compile related errors
lazy-pr0grammer May 8, 2022
2f89e9a
fix: compile related errors
lazy-pr0grammer May 8, 2022
3293792
fix: compile related errors
lazy-pr0grammer May 8, 2022
edb5cde
fix: compile related errors
lazy-pr0grammer May 8, 2022
66e9831
fix: fragment not attached to a context
lazy-pr0grammer May 8, 2022
f91fdb0
fix: calledfromwrongthreadexception
lazy-pr0grammer May 8, 2022
0b87e35
refactor: removed unwanted spaces, code cleanup
lazy-pr0grammer May 8, 2022
7265b05
refactor: removed unwanted spaces and code cleanup
lazy-pr0grammer May 8, 2022
97fc5e2
fix: box doesnt shows full text
lazy-pr0grammer May 8, 2022
f63ce25
feat: added uiutilskt
lazy-pr0grammer May 8, 2022
d794e39
fix: icon got copied to wrong folder
lazy-pr0grammer May 8, 2022
8d66e9a
fix: added missing imports
lazy-pr0grammer May 8, 2022
bdff555
fix: dialog crashed
lazy-pr0grammer May 8, 2022
133a0fd
Merge branch 'main' into main
lazy-pr0grammer May 17, 2022
d72b513
Merge branch 'tyron12233:main' into main
lazy-pr0grammer Jun 9, 2022
23cba04
Merge branch 'tyron12233:main' into main
lazy-pr0grammer Jun 18, 2022
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
fix: fixed compile related errors
  • Loading branch information
lazy-pr0grammer authored May 8, 2022
commit ea9f86f418d11b1b067435d7b7b2d0090711a8fc
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceStat


private void showConfirmationDialog() {
MaterialAlertDialogBuilder builder = new MaterialAlertDialogBuilder(MainActivity.this);
MaterialAlertDialogBuilder builder = new MaterialAlertDialogBuilder(requireContext());
builder.setTitle("Warning!");
builder.setMessage("Do you want to extract all icons from CodeAssist?");
builder.setPositiveButton("EXTRACT", (d, w) -> {
Expand Down