Skip to content

Commit fba1ad2

Browse files
authored
Merge pull request #17 from hyperdevs-team/task/update-ownership
Update ownership to hyperdevs
2 parents 546c193 + 85136c4 commit fba1ad2

File tree

82 files changed

+1462
-34
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+1462
-34
lines changed

.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Github issue (delete if this does not apply)
2-
https://github.com/bq/mini-kotlin/issues/change_me_issue_number
2+
https://github.com/hyperdevs-team/mini-kotlin/issues/change_me_issue_number
33

44
### PR's key points
55

.gitignore

+42-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
*.iml
22
.gradle
3-
.idea/
43
/local.properties
54
/.idea/workspace.xml
65
/.idea/libraries
@@ -19,6 +18,13 @@
1918
# User-specific stuff:
2019
.idea/**/workspace.xml
2120
.idea/**/tasks.xml
21+
.idea/**/usage.statistics.xml
22+
.idea/**/dictionaries
23+
.idea/**/shelf
24+
25+
# Generated files
26+
.idea/**/contentModel.xml
27+
.idea/**/libraries-with-intellij-classes.xml
2228

2329
# Sensitive or high-churn files:
2430
.idea/**/dataSources/
@@ -28,6 +34,7 @@
2834
.idea/**/sqlDataSources.xml
2935
.idea/**/dynamic.xml
3036
.idea/**/uiDesigner.xml
37+
.idea/**/dbnavigator.xml
3138

3239
# Gradle:
3340
.idea/**/gradle.xml
@@ -43,19 +50,52 @@
4350

4451
# IntelliJ
4552
/out/
53+
*.iml
54+
.idea/encodings.xml
55+
.idea/vcs.xml
56+
.idea/codeStyles/Project.xml
57+
.idea/workspace.xml
58+
.idea/tasks.xml
59+
.idea/libraries
60+
.idea/dictionaries
61+
.idea/runConfigurations.xml
62+
.idea/terminal.xml
63+
.idea/inspectionProfiles/
64+
.idea/jarRepositories.xml
65+
.idea/modules
66+
.idea/markdown-exported-files.xml
67+
.idea/markdown-navigator.xml
68+
.idea/markdown-navigator-enh.xml
69+
.idea/markdown-navigator/
70+
.idea/misc.xml
71+
.idea/modules.xml
72+
.idea/caches
73+
.idea/compiler.xml
74+
.idea/assetWizardSettings.xml
75+
.idea/navEditor.xml
76+
.idea/.name
4677

4778
# mpeltonen/sbt-idea plugin
4879
.idea_modules/
4980

5081
# JIRA plugin
5182
atlassian-ide-plugin.xml
5283

84+
# Cursive Clojure plugin
85+
.idea/replstate.xml
86+
5387
# Crashlytics plugin (for Android Studio and IntelliJ)
5488
com_crashlytics_export_strings.xml
5589
crashlytics.properties
5690
crashlytics-build.properties
5791
fabric.properties
5892

93+
# Editor-based Rest Client
94+
.idea/httpRequests
95+
96+
# Android studio 3.1+ serialized cache file
97+
.idea/caches/build_file_checksums.ser
98+
5999
### Intellij Patch ###
60100
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
61101

@@ -168,4 +208,4 @@ gradle-app.setting
168208
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
169209
# gradle/wrapper/gradle-wrapper.properties
170210

171-
# End of https://www.gitignore.io/api/java,gradle,intellij,osx,windows,linux
211+
# End of https://www.gitignore.io/api/java,gradle,intellij,osx,windows,linux

.idea/copyright/Apache_2_0.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

+26-20
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818
### Security
1919
- No security issues fixed!
2020

21+
## [2.0.0] - 2021-05-01
22+
### Changed
23+
- Changed repo ownership to [hyperdevs-team](https://github.com/hyperdevs-team). Thanks [bq](https://github.com/bq) for all the work!
24+
- Changed package names from `com.bq.*` to `com.hyperdevs.*`
25+
2126
## [1.4.0] - 2020-12-15
2227
### Added
2328
- Upgrade Kotlin to 1.4.21 and Kodein to 7.1.0, apart from other Android dependencies.
@@ -109,23 +114,24 @@ state (`success` or `failure`)
109114
### Added
110115
- Initial architecture release.
111116

112-
[Unreleased]: https://github.com/bq/mini-kotlin/compare/1.4.0...HEAD
113-
[1.4.0]: https://github.com/bq/mini-kotlin/compare/1.3.3...1.4.0
114-
[1.3.3]: https://github.com/bq/mini-kotlin/compare/1.3.2...1.3.3
115-
[1.3.2]: https://github.com/bq/mini-kotlin/compare/1.3.1...1.3.2
116-
[1.3.1]: https://github.com/bq/mini-kotlin/compare/1.3.0...1.3.1
117-
[1.3.0]: https://github.com/bq/mini-kotlin/compare/1.2.0...1.3.0
118-
[1.2.0]: https://github.com/bq/mini-kotlin/compare/1.1.2...1.2.0
119-
[1.1.2]: https://github.com/bq/mini-kotlin/compare/1.1.1...1.1.2
120-
[1.1.1]: https://github.com/bq/mini-kotlin/compare/1.1.0...1.1.1
121-
[1.1.0]: https://github.com/bq/mini-kotlin/compare/1.0.9...1.1.0
122-
[1.0.9]: https://github.com/bq/mini-kotlin/compare/1.0.8...1.0.9
123-
[1.0.8]: https://github.com/bq/mini-kotlin/compare/1.0.7...1.0.8
124-
[1.0.7]: https://github.com/bq/mini-kotlin/compare/1.0.6...1.0.7
125-
[1.0.6]: https://github.com/bq/mini-kotlin/compare/1.0.5...1.0.6
126-
[1.0.5]: https://github.com/bq/mini-kotlin/compare/1.0.4...1.0.5
127-
[1.0.4]: https://github.com/bq/mini-kotlin/compare/1.0.3...1.0.4
128-
[1.0.3]: https://github.com/bq/mini-kotlin/compare/1.0.2...1.0.3
129-
[1.0.2]: https://github.com/bq/mini-kotlin/compare/1.0.1...1.0.2
130-
[1.0.1]: https://github.com/bq/mini-kotlin/compare/1.0.0...1.0.1
131-
[1.0.0]: https://github.com/bq/mini-kotlin/releases/tag/1.0.0
117+
[Unreleased]: https://github.com/hyperdevs-team/mini-kotlin/compare/2.0.0...HEAD
118+
[2.0.0]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.4.0...2.0.0
119+
[1.4.0]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.3.3...1.4.0
120+
[1.3.3]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.3.2...1.3.3
121+
[1.3.2]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.3.1...1.3.2
122+
[1.3.1]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.3.0...1.3.1
123+
[1.3.0]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.2.0...1.3.0
124+
[1.2.0]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.1.2...1.2.0
125+
[1.1.2]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.1.1...1.1.2
126+
[1.1.1]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.1.0...1.1.1
127+
[1.1.0]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.0.9...1.1.0
128+
[1.0.9]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.0.8...1.0.9
129+
[1.0.8]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.0.7...1.0.8
130+
[1.0.7]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.0.6...1.0.7
131+
[1.0.6]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.0.5...1.0.6
132+
[1.0.5]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.0.4...1.0.5
133+
[1.0.4]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.0.3...1.0.4
134+
[1.0.3]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.0.2...1.0.3
135+
[1.0.2]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.0.1...1.0.2
136+
[1.0.1]: https://github.com/hyperdevs-team/mini-kotlin/compare/1.0.0...1.0.1
137+
[1.0.0]: https://github.com/hyperdevs-team/mini-kotlin/releases/tag/1.0.0

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Mini
2-
[![Release](https://jitpack.io/v/bq/mini-kotlin.svg)](https://jitpack.io/#bq/mini-kotlin)
2+
[![Release](https://jitpack.io/v/hyperdevs-team/mini-kotlin.svg)](https://jitpack.io/#hyperdevs-team/mini-kotlin)
33

44
Mini is a minimal Flux architecture written in Kotlin that also adds a mix of useful features to build UIs fast.
55

@@ -184,21 +184,21 @@ Add the following dependencies to your app's `build.gradle`:
184184

185185
```groovy
186186
dependencies {
187-
def mini_version = "1.4.0"
187+
def mini_version = "2.0.0"
188188
// Minimum working dependencies
189-
implementation "com.github.bq.mini-kotlin:mini-android:$mini_version"
190-
kapt "com.github.bq.mini-kotlin:mini-processor:$mini_version"
189+
implementation "com.github.hyperdevs-team.mini-kotlin:mini-android:$mini_version"
190+
kapt "com.github.hyperdevs-team.mini-kotlin:mini-processor:$mini_version"
191191
192192
// RxJava 2 helper libraries
193-
implementation "com.github.bq.mini-kotlin:mini-rx2:$mini_version"
194-
implementation "com.github.bq.mini-kotlin:mini-rx2-android:$mini_version"
193+
implementation "com.github.hyperdevs-team.mini-kotlin:mini-rx2:$mini_version"
194+
implementation "com.github.hyperdevs-team.mini-kotlin:mini-rx2-android:$mini_version"
195195
196196
// Kodein helper libraries
197-
implementation "com.github.bq.mini-kotlin:mini-kodein:$mini_version"
198-
implementation "com.github.bq.mini-kotlin:mini-kodein-android:$mini_version"
197+
implementation "com.github.hyperdevs-team.mini-kotlin:mini-kodein:$mini_version"
198+
implementation "com.github.hyperdevs-team.mini-kotlin:mini-kodein-android:$mini_version"
199199
200200
// Testing helper libraries
201-
androidTestImplementation "com.github.bq.mini-kotlin:mini-testing:$mini_version"
201+
androidTestImplementation "com.github.hyperdevs-team.mini-kotlin:mini-testing:$mini_version"
202202
}
203203
```
204204

app/build.gradle

+19-1
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,31 @@ apply plugin: 'com.android.application'
88
apply plugin: 'kotlin-android'
99
apply plugin: 'kotlin-kapt'
1010

11+
/*
12+
* Copyright 2021 HyperDevs
13+
*
14+
* Copyright 2020 BQ
15+
*
16+
* Licensed under the Apache License, Version 2.0 (the "License");
17+
* you may not use this file except in compliance with the License.
18+
* You may obtain a copy of the License at
19+
*
20+
* http://www.apache.org/licenses/LICENSE-2.0
21+
*
22+
* Unless required by applicable law or agreed to in writing, software
23+
* distributed under the License is distributed on an "AS IS" BASIS,
24+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25+
* See the License for the specific language governing permissions and
26+
* limitations under the License.
27+
*/
28+
1129
//Android
1230
android {
1331
compileSdkVersion android_target_sdk
1432
buildToolsVersion android_build_tools_version
1533

1634
defaultConfig {
17-
applicationId "com.bq.mini"
35+
applicationId "com.hyperdevs.mini"
1836
minSdkVersion 21
1937
targetSdkVersion android_target_sdk
2038
versionCode android_version_code

app/src/main/AndroidManifest.xml

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
<!--
2+
~ Copyright 2021 HyperDevs
3+
~
4+
~ Copyright 2020 BQ
5+
~
6+
~ Licensed under the Apache License, Version 2.0 (the "License");
7+
~ you may not use this file except in compliance with the License.
8+
~ You may obtain a copy of the License at
9+
~
10+
~ http://www.apache.org/licenses/LICENSE-2.0
11+
~
12+
~ Unless required by applicable law or agreed to in writing, software
13+
~ distributed under the License is distributed on an "AS IS" BASIS,
14+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
~ See the License for the specific language governing permissions and
16+
~ limitations under the License.
17+
-->
18+
119
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
220
xmlns:tools="http://schemas.android.com/tools"
321
package="org.sample">

app/src/main/java/org/sample/SampleActivity.kt

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright 2021 HyperDevs
3+
*
4+
* Copyright 2020 BQ
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
119
package org.sample
220

321
import android.os.Bundle

app/src/main/java/org/sample/SampleData.kt

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright 2021 HyperDevs
3+
*
4+
* Copyright 2020 BQ
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
119
package org.sample
220

321
import mini.Action

app/src/main/java/org/sample/SampleRxActivity.kt

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Copyright 2021 HyperDevs
3+
*
4+
* Copyright 2020 BQ
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
119
package org.sample
220

321
import android.os.Bundle

app/src/main/res/drawable/ic_launcher_background.xml

+18
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ Copyright 2021 HyperDevs
4+
~
5+
~ Copyright 2020 BQ
6+
~
7+
~ Licensed under the Apache License, Version 2.0 (the "License");
8+
~ you may not use this file except in compliance with the License.
9+
~ You may obtain a copy of the License at
10+
~
11+
~ http://www.apache.org/licenses/LICENSE-2.0
12+
~
13+
~ Unless required by applicable law or agreed to in writing, software
14+
~ distributed under the License is distributed on an "AS IS" BASIS,
15+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
~ See the License for the specific language governing permissions and
17+
~ limitations under the License.
18+
-->
19+
220
<vector xmlns:android="http://schemas.android.com/apk/res/android"
321
android:width="108dp"
422
android:height="108dp"

app/src/main/res/drawable/ic_launcher_foreground.xml

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
<!--
2+
~ Copyright 2021 HyperDevs
3+
~
4+
~ Copyright 2020 BQ
5+
~
6+
~ Licensed under the Apache License, Version 2.0 (the "License");
7+
~ you may not use this file except in compliance with the License.
8+
~ You may obtain a copy of the License at
9+
~
10+
~ http://www.apache.org/licenses/LICENSE-2.0
11+
~
12+
~ Unless required by applicable law or agreed to in writing, software
13+
~ distributed under the License is distributed on an "AS IS" BASIS,
14+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
~ See the License for the specific language governing permissions and
16+
~ limitations under the License.
17+
-->
18+
119
<vector xmlns:android="http://schemas.android.com/apk/res/android"
220
android:width="108dp"
321
android:height="108dp"

app/src/main/res/layout/home_activity.xml

+18
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ Copyright 2021 HyperDevs
4+
~
5+
~ Copyright 2020 BQ
6+
~
7+
~ Licensed under the Apache License, Version 2.0 (the "License");
8+
~ you may not use this file except in compliance with the License.
9+
~ You may obtain a copy of the License at
10+
~
11+
~ http://www.apache.org/licenses/LICENSE-2.0
12+
~
13+
~ Unless required by applicable law or agreed to in writing, software
14+
~ distributed under the License is distributed on an "AS IS" BASIS,
15+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
~ See the License for the specific language governing permissions and
17+
~ limitations under the License.
18+
-->
19+
220
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
321
xmlns:app="http://schemas.android.com/apk/res-auto"
422
xmlns:tools="http://schemas.android.com/tools"

0 commit comments

Comments
 (0)