diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 6e294a9..2121c43 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1 @@ -github: [TeodorHMX1] +github: [teogor] diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 5fd25f1..6360028 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -3,7 +3,7 @@ name: Bug report about: Create a report to help us improve title: "[Component name] Short description of issue" labels: '@bug' -assignees: 'TeodorHMX1' +assignees: 'teogor' --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 42fd487..508789c 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -3,7 +3,7 @@ name: Feature request about: Suggest an idea for this project title: "[Component name] Short description of request" labels: '@feature' -assignees: 'TeodorHMX1' +assignees: 'teogor' --- diff --git a/.zeobot/config.yml b/.zeobot/config.yml index 36d5aed..b84ac43 100644 --- a/.zeobot/config.yml +++ b/.zeobot/config.yml @@ -15,8 +15,7 @@ zeobot: # write down the users with access to restricted commands listen_to: users: - - TeodorHMX1 - - Teogor + - teogor # zeobot's features features: # if enabled, zeobot will post comments @@ -36,11 +35,9 @@ auto_assign: review_groups: assignee_groups: reviewers_to_add: - - TeodorHMX1 - - Teogor + - teogor assignees_to_add: - - TeodorHMX1 - - Teogor + - teogor skip_keywords: # Autodelete Merged Branches (AMB) @@ -77,8 +74,7 @@ enforce_branch_merge: - main # who has the right to write to protected branches give_access_to: - - TeodorHMX1 - - Teogor + - teogor # License Checker (LC) # branches that contains files without license will not be merged diff --git a/.zeobot/contributors.src b/.zeobot/contributors.src index 9dbc334..7535342 100644 --- a/.zeobot/contributors.src +++ b/.zeobot/contributors.src @@ -5,7 +5,7 @@ "repoHost": "https://github.com", "contributors": [ { - "login": "TeodorHMX1", + "login": "teogor", "name": "Teodor G.", "avatar_url": "https://avatars.githubusercontent.com/u/22307006?v=4", "profile": "http://team.zeoflow.com/teodor_g", diff --git a/README.md b/README.md index 1ef5cb4..b758c94 100644 --- a/README.md +++ b/README.md @@ -26,12 +26,12 @@ dependencies { def memo_version = "x.y.z" // Memo Library - implementation("com.zeoflow:memo:$memo_version") + implementation("com.zeoflow.memo:memo:$memo_version") // Required if you want to use the injector - implementation("com.zeoflow:memo-annotation:$memo_version") - annotationProcessor("com.zeoflow:memo-compiler:$memo_version") + implementation("com.zeoflow.memo:memo-runtime:$memo_version") + annotationProcessor("com.zeoflow.memo:memo-compiler:$memo_version") // For kotlin projects use kapt instead of annotationProcessor - kapt("com.zeoflow:memo-compiler:$memo_version") + kapt("com.zeoflow.memo:memo-compiler-ktx:$memo_version") // ... } @@ -315,7 +315,7 @@ component.userProfile().usernameObserver((LifecycleOwner) this, new Observer

- +

diff --git a/docs/README.md b/docs/README.md index 1ef5cb4..61be085 100644 --- a/docs/README.md +++ b/docs/README.md @@ -12,9 +12,9 @@ To use it: ```groovy allprojects { repositories { - mavenCentral() + mavenCentral() } - } +} ``` 3. Add the library to the `dependencies` section: @@ -26,12 +26,12 @@ dependencies { def memo_version = "x.y.z" // Memo Library - implementation("com.zeoflow:memo:$memo_version") + implementation("com.zeoflow.memo:memo:$memo_version") // Required if you want to use the injector - implementation("com.zeoflow:memo-annotation:$memo_version") - annotationProcessor("com.zeoflow:memo-compiler:$memo_version") + implementation("com.zeoflow.memo:memo-runtime:$memo_version") + annotationProcessor("com.zeoflow.memo:memo-compiler:$memo_version") // For kotlin projects use kapt instead of annotationProcessor - kapt("com.zeoflow:memo-compiler:$memo_version") + kapt("com.zeoflow.memo:memo-compiler-ktx:$memo_version") // ... } @@ -285,13 +285,13 @@ userProfile.addLoginListeners(new UserProfile_MemoEntity.LoginIOnChangedListener Add observable for the username field ```java component.userProfile().usernameObserver((LifecycleOwner) this, new Observer() -{ - @Override - public void onChanged(String username) - { + { +@Override +public void onChanged(String username) + { // do something here - } -}); + } + }); ``` ## License @@ -315,7 +315,7 @@ component.userProfile().usernameObserver((LifecycleOwner) this, new Observer

- +

diff --git a/docs/contributors.md b/docs/contributors.md index 1cdce0c..fd11291 100644 --- a/docs/contributors.md +++ b/docs/contributors.md @@ -6,11 +6,11 @@ ### :zap: Contributors List :zap:

- +

--- -### :pushpin: Teodor G. ([@TeodorHMX1](https://github.com/TeodorHMX1)) +### :pushpin: Teodor G. ([@teogor](https://github.com/teogor)) #### Contributions: - :bust_in_silhouette::computer: Code - :open_book::pencil2: Documentation diff --git a/gradle.properties b/gradle.properties index 4fa9652..8c076c7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -25,7 +25,7 @@ android.nonTransitiveRClass=true POM_NAME=Memo POM_PACKAGING=aar VERSION_NAME=1.3.0 -GROUP=com.zeoflow +GROUP=com.zeoflow.memo POM_DESCRIPTION=Android processing and secured library for managing SharedPreferences as key-value elements efficiently and structurally. POM_URL=https://github.com/zeoflow/memo POM_SCM_URL=https://github.com/zeoflow/memo