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

Hot fix/fix range stuck when to selected first #66

Open
wants to merge 62 commits into
base: fixing_goto_issue
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
d85e8f8
Update README.md
aminography Nov 30, 2020
5d203e0
Improving arabic digits
Nov 30, 2020
8a2a898
Update README.md
aminography Nov 30, 2020
a5a6fc2
Improving arabic digits
Nov 30, 2020
b6e1802
Merge pull request #39 from aminography/improving_arabic_digits
aminography Nov 30, 2020
9bc634c
Update README.md
aminography Nov 30, 2020
f353f15
Handling hardware accelerate issue
Dec 3, 2020
ffd799e
Update README.md
aminography Dec 3, 2020
e5666e9
Improving gradle configs
Dec 3, 2020
37b7bf9
Merge pull request #40 from aminography/handling_hardware_acceleratio…
aminography Dec 3, 2020
9063f29
Improving gradle configs
Dec 7, 2020
b587e64
adding the ability to specify start date
Dec 7, 2020
538b16e
Merge remote-tracking branch 'origin/initial_from_date_for_range' int…
Dec 7, 2020
805e6d3
Merge pull request #42 from aminography/initial_from_date_for_range
aminography Dec 7, 2020
6ee394d
Updating version.
Dec 7, 2020
707d5c4
Update README.md
aminography Dec 21, 2020
952f63d
Update README.md
aminography Dec 21, 2020
d572a9b
Update README.md
aminography Dec 21, 2020
d25fde6
Update README.md
aminography Dec 21, 2020
34c1f00
Update README.md
aminography Dec 21, 2020
28a88e4
Update README.md
aminography Dec 21, 2020
d117c84
Update README.md
aminography Dec 21, 2020
efe724d
Update README.md
aminography Dec 27, 2020
5537f91
Update README.md
aminography Dec 27, 2020
5910c61
Update README.md
aminography Dec 27, 2020
93528eb
Updating README.md
Dec 27, 2020
4ac729d
Merge remote-tracking branch 'origin/master'
Dec 27, 2020
fb2cc62
Updating README.md
Dec 27, 2020
cf52397
Updating README.md
Dec 27, 2020
7a16703
Updating README.md
Dec 27, 2020
b224602
Updating README.md
Dec 27, 2020
e93495d
Updating README.md
Dec 27, 2020
f7d6ee7
Updating README.md
Dec 27, 2020
b7a2949
Updating README.md
Dec 27, 2020
760bef0
Updating README.md
Dec 27, 2020
6653376
Updating README.md
Dec 27, 2020
d2cb480
Updating documentations
Dec 27, 2020
8b59ed7
Updating documentations
Dec 27, 2020
6b15d30
Updating documentations
Dec 27, 2020
48f0afe
Updating documentations
Dec 27, 2020
71a1d9c
Updating documentations
Dec 27, 2020
67ccb3b
Updating documentations
Dec 27, 2020
9eaa4df
Updating README.md
Dec 27, 2020
a58ea34
Updating README.md
Dec 27, 2020
fc0b93b
Updating README.md
Dec 27, 2020
a74680c
Updating README.md
Dec 27, 2020
d1728c2
Resolving a minor memory leak
Dec 28, 2020
64ded9f
Merge pull request #44 from aminography/resolving_activity_memory_leak
aminography Dec 28, 2020
b7899f9
Fixing ui symmetricity on api<17
Jan 3, 2021
f7ba94f
Merge pull request #45 from aminography/ui_symmetricity_api_below_17
aminography Jan 3, 2021
af01a53
Add feature of selecting end day automatically.
aminography Feb 25, 2021
7abb7ef
Merge pull request #49 from aminography/auto_select_end_day
aminography Feb 25, 2021
64ca630
Update README.md
aminography Feb 25, 2021
62bd5e5
Added maven publishing and refactored dependencies.
aminography Dec 28, 2021
227a002
Update README.md
aminography Dec 28, 2021
904a0a0
Fix permission.
aminography Dec 28, 2021
53a4625
Merge remote-tracking branch 'origin/master'
aminography Dec 28, 2021
a547480
Fix permission.
aminography Dec 28, 2021
4dffc4a
Upgrade primecalendar dependency to 1.7.0
aminography Dec 29, 2021
1427c03
Changed arabic select string.
aminography Feb 12, 2022
9ad06c7
Upgraded version.
aminography Feb 12, 2022
36768e6
Fix selection is stuck when "To" is clicked before picking start Date
Oct 27, 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
38 changes: 38 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Publish

on:
release:
# We'll run this workflow when a new GitHub release is created
types: [released]

jobs:
publish:
name: Release build and publish
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 11

# Builds the release artifacts of the library
- name: Release build
run: ./gradlew assembleRelease -x :sample-app:assembleRelease -x :sample-app-java:assembleRelease

# Generates other artifacts (javadocJar is optional)
- name: Source jar and dokka
run: ./gradlew androidSourcesJar javadocJar

# Runs upload, and then closes & releases the repository
- name: Publish to MavenCentral
run: ./gradlew publishReleasePublicationToSonatypeRepository --max-workers 1 closeAndReleaseSonatypeStagingRepository
env:
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
Loading