-
-
Notifications
You must be signed in to change notification settings - Fork 31
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
prevent maximize when mouse double clicked #25
Open
joehy
wants to merge
27
commits into
experimental
Choose a base branch
from
master
base: experimental
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
3ac7ed5
Update README.md
goxr3plus 8690fab
Create FUNDING.yml
goxr3plus cd9d8e0
Update FUNDING.yml
goxr3plus fdab025
Update README.md
goxr3plus 1d521c0
Update README.md
goxr3plus bd26662
Update README.md
goxr3plus 934505a
Update README.md
goxr3plus 602cb8a
Update README.md
goxr3plus 417b9ba
Update README.md
goxr3plus 73fe271
Update README.md
goxr3plus b26fbc2
Update README.md
goxr3plus 67ca898
Update README.md
goxr3plus b9f7084
Update README.md
goxr3plus 9bb0008
Fixed a possible IndexOutOfBoundsException
gilad4 b2e5367
Update README.md
goxr3plus 5daa04b
Fixed a possible IndexOutOfBoundsException (#22)
goxr3plus 8469412
Update pom.xml
goxr3plus ca4de2e
Update README.md
goxr3plus 9138ad0
Update README.md
goxr3plus ee62a14
Update README.md
goxr3plus 3883a1f
Update README.md
goxr3plus 01a0386
Update README.md
goxr3plus d341e85
Update README.md
goxr3plus a721deb
Update README.md
goxr3plus 7240fc5
Added a github action that runs mvn verify on each push
HanSolo ff88556
Merge pull request #23 from HanSolo/github_actions
goxr3plus 97bdc69
Update README.md
goxr3plus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# These are supported funding model platforms | ||
|
||
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] | ||
patreon: GOXR3PLUSTUDIO | ||
open_collective: # Replace with a single Open Collective username | ||
ko_fi: goxr3plusstudio | ||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel | ||
custom: https://www.paypal.me/GOXR3PLUSCOMPANY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
name: Java CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-18.04, macOS-latest, windows-latest] | ||
java: [8] | ||
fail-fast: false | ||
max-parallel: 4 | ||
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
- name: Test with Maven | ||
run: mvn verify -B --file pom.xml | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a great one i haven't noticed this case :)