Fixed merged conflicts of 2973th pull request#5003
Fixed merged conflicts of 2973th pull request#5003keyboardNinjaWarrior wants to merge 11 commits intotermux:masterfrom
Conversation
| fi | ||
|
|
||
| - name: Attach universal APK file | ||
| uses: actions/upload-artifact@v6 | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: ${{ env.APK_BASENAME_PREFIX }}_universal | ||
| path: | | ||
| ${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_universal.apk | ||
| ${{ env.APK_DIR_PATH }}/output-metadata.json | ||
|
|
||
| - name: Attach arm64-v8a APK file | ||
| uses: actions/upload-artifact@v6 | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: ${{ env.APK_BASENAME_PREFIX }}_arm64-v8a | ||
| path: | | ||
| ${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_arm64-v8a.apk | ||
| ${{ env.APK_DIR_PATH }}/output-metadata.json | ||
|
|
||
| - name: Attach armeabi-v7a APK file | ||
| uses: actions/upload-artifact@v6 | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: ${{ env.APK_BASENAME_PREFIX }}_armeabi-v7a | ||
| path: | | ||
| ${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_armeabi-v7a.apk | ||
| ${{ env.APK_DIR_PATH }}/output-metadata.json | ||
|
|
||
| - name: Attach x86_64 APK file | ||
| uses: actions/upload-artifact@v6 | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: ${{ env.APK_BASENAME_PREFIX }}_x86_64 | ||
| path: | | ||
| ${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_x86_64.apk | ||
| ${{ env.APK_DIR_PATH }}/output-metadata.json | ||
|
|
||
| - name: Attach x86 APK file | ||
| uses: actions/upload-artifact@v6 | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: ${{ env.APK_BASENAME_PREFIX }}_x86 | ||
| path: | | ||
| ${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_x86.apk | ||
| ${{ env.APK_DIR_PATH }}/output-metadata.json | ||
|
|
||
| - name: Attach sha256sums file | ||
| uses: actions/upload-artifact@v6 | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: ${{ env.APK_BASENAME_PREFIX }}_sha256sums | ||
| path: | |
There was a problem hiding this comment.
Must be removed from the PR, not related to the change.
|
Removing debug_build.yml is not acceptable. Dependabot change is out of scope of PR, you should rebase your changes against master branch. |
|
Merge commits are not acceptable as well, even though it is not filed this way. You should use git rebasing feature, which effectively means history rewrite. |
6de8723 to
d3c8368
Compare
|
You still have the "rebased pull requeat" commit. |
|
I am confused. What do you want me to do? Remove that commit? |
d3c8368 to
cbb7958
Compare
I have squashed the commits together. Let's see, if there is anything wrong, I'll try my best to fix it. |
cbb7958 to
3b90f3c
Compare
…`KEYCODE_PAGE_DOWN` Found by AstroSnail (termux#5052 (comment)) Closes termux#5052
3b90f3c to
bdb769c
Compare
Add missing {} that change the logic.
- For iterm2 images - catch the error, and cancel the image. - For sixels - if it happens when resizing the bitmap, than ignore drawing outside of the current image.
- Move working bitmap code (drawing current bitmap) to WorkingTerminalBitmap class. - Move bitmap handling code to TerminalBitmap class.
To avoid removing elements from the map while iterating over it. This should solve the Concurrent Modification Exception in the bitmap garbage collection.
Avoid crash when BitmapFactory cannot decode image
…last column. This creates a zero length text run, so skip it.
bdb769c to
bcc20bf
Compare
|
I figured out how to remove the bot's commit and rebased the branch. |
|
I see, agnostic-apollo has increased the limit size and rebased it. I haven't added any code of my own. I've simply resbased it. Let's see what the author has to say. I don't think this pull request is of any use now. |
|
Well, if MatanZ prefers this version more than the other version, they might approve it. but agnostic-apollo has not approved this version, only that other version. my goal is to make those versions which each approved more similar to each other by getting each person to approve successively more similar versions to the other until they both approve the same version, at which point the PR would be possible to merge. |



Merged Pull Request: Add graphics in terminal support: - Sixel and iTerm2 protocols #2973 into the main branch and did my best to resolve the conflicts.