Skip to content

Commit 5a7819c

Browse files
committed
Update ownership to hyperdevs
1 parent 15ee7a6 commit 5a7819c

28 files changed

+159
-82
lines changed

.idea/copyright/Apache_2_0.xml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3434
### Security
3535
- No security issues fixed!
3636

37+
## [2.0.0] - 2021-04-28
38+
### Changed
39+
- Changed repo ownership to [hyperdevs-team](https://github.com/hyperdevs-team). Thanks [bq](https://github.com/bq) for all the work!
40+
- Changed package names from `com.bq.*` to `com.hyperdevs.*`
41+
3742
## [1.4.2] - 2020-12-29
3843
### Added
3944
- [Dotenv support](https://github.com/cdimascio/dotenv-kotlin) for the `Main.kt` file for easier local development.
@@ -243,13 +248,15 @@ res_dir_path -> resDirPath
243248
### Added
244249
- Initial release.
245250

246-
[Unreleased]: https://github.com/bq/poeditor-android-gradle-plugin/compare/1.4.1...HEAD
247-
[1.4.1]: https://github.com/bq/poeditor-android-gradle-plugin/compare/1.4.0...1.4.1
248-
[1.4.0]: https://github.com/bq/poeditor-android-gradle-plugin/compare/1.3.1...1.4.0
249-
[1.3.1]: https://github.com/bq/poeditor-android-gradle-plugin/compare/1.3.0...1.3.1
250-
[1.3.0]: https://github.com/bq/poeditor-android-gradle-plugin/compare/1.2.0...1.3.0
251-
[1.2.0]: https://github.com/bq/poeditor-android-gradle-plugin/compare/1.1.0...1.2.0
252-
[1.1.0]: https://github.com/bq/poeditor-android-gradle-plugin/compare/1.0.0...1.1.0
253-
[1.0.0]: https://github.com/bq/poeditor-android-gradle-plugin/compare/0.2.5...1.0.0
254-
[0.2.5]: https://github.com/bq/poeditor-android-gradle-plugin/compare/v0.2.4...0.2.5
255-
[0.2.4]: https://github.com/bq/poeditor-android-gradle-plugin/releases/tag/v0.2.4
251+
[Unreleased]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.0.0...HEAD
252+
[2.0.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/1.4.2...2.0.0
253+
[1.4.2]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/1.4.1...1.4.2
254+
[1.4.1]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/1.4.0...1.4.1
255+
[1.4.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/1.3.1...1.4.0
256+
[1.3.1]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/1.3.0...1.3.1
257+
[1.3.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/1.2.0...1.3.0
258+
[1.2.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/1.1.0...1.2.0
259+
[1.1.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/1.0.0...1.1.0
260+
[1.0.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/0.2.5...1.0.0
261+
[0.2.5]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/v0.2.4...0.2.5
262+
[0.2.4]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/releases/tag/v0.2.4

README.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PoEditor Android Gradle Plug-in
2-
[![Release](https://jitpack.io/v/bq/poeditor-android-gradle-plugin.svg)](https://jitpack.io/#bq/poeditor-android-gradle-plugin)
2+
[![Release](https://jitpack.io/v/hyperdevs-team/poeditor-android-gradle-plugin.svg)](https://jitpack.io/#hyperdevs-team/poeditor-android-gradle-plugin)
33

44
Simple plug-in that eases importing [PoEditor](https://poeditor.com) localized strings to your Android project.
55

@@ -18,7 +18,7 @@ buildscript {
1818
maven { url 'https://jitpack.io' }
1919
}
2020
dependencies {
21-
classpath 'com.github.bq:poeditor-android-gradle-plugin:1.4.1'
21+
classpath 'com.github.hyperdevs-team:poeditor-android-gradle-plugin:2.0.0'
2222
}
2323
}
2424
```
@@ -33,7 +33,7 @@ buildscript {
3333
maven("https://jitpack.io")
3434
}
3535
dependencies {
36-
classpath("com.github.bq:poeditor-android-gradle-plugin:1.4.1")
36+
classpath("com.github.hyperdevs-team:poeditor-android-gradle-plugin:2.0.0")
3737
}
3838
}
3939
```
@@ -46,7 +46,7 @@ Apply and configure the plug-in in your app's `build.gradle` file:
4646

4747
```groovy
4848
apply plugin: "com.android.application"
49-
apply plugin: "com.bq.poeditor"
49+
apply plugin: "com.hyperdevs.poeditor"
5050
5151
poEditor {
5252
apiToken = "your_api_token"
@@ -62,7 +62,7 @@ poEditor {
6262
```kotlin
6363
plugins {
6464
id "com.android.application"
65-
id "com.bq.poeditor"
65+
id "com.hyperdevs.poeditor"
6666
}
6767

6868
poEditor {
@@ -273,7 +273,7 @@ Apply and configure the plug-in in your library's `build.gradle` file:
273273

274274
```groovy
275275
apply plugin: "com.android.library"
276-
apply plugin: "com.bq.poeditor"
276+
apply plugin: "com.hyperdevs.poeditor"
277277
278278
poEditor {
279279
apiToken = "your_api_token"
@@ -289,7 +289,7 @@ poEditor {
289289
```kotlin
290290
plugins {
291291
id "com.android.library"
292-
id "com.bq.poeditor"
292+
id "com.hyperdevs.poeditor"
293293
}
294294

295295
poEditor {
@@ -370,16 +370,22 @@ The plug-in will create two `strings.xml` files:
370370
```
371371

372372
## iOS alternative
373-
If you want a similar solution for your iOS projects, check this out: [poeditor-parser-swift](https://github.com/bq/poeditor-parser-swift)
373+
If you want a similar solution for your iOS projects, check this out: [poeditor-parser-swift](https://github.com/hyperdevs-team/poeditor-parser-swift)
374374

375375
## Authors & Collaborators
376376
* **[Iván Martínez](https://github.com/imartinez)** - *Initial work*
377377
* **[Adrián García](https://github.com/adriangl)** - *Maintainer*
378378
* **[sonnet](https://github.com/rafid059)** - *Contributor*
379379

380+
## Acknowledgements
381+
The work in this repository up to April 28th, 2021 was done by [bq](https://github.com/bq).
382+
Thanks for all the work!!
383+
380384
## License
381385
This project is licensed under the Apache Software License, Version 2.0.
382386
```
387+
Copyright 2021 HyperDevs
388+
383389
Copyright 2016 BQ
384390
385391
Licensed under the Apache License, Version 2.0 (the "License");

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/*
2+
* Copyright 2021 HyperDevs
3+
*
24
* Copyright 2020 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,7 +16,7 @@
1416
* limitations under the License.
1517
*/
1618

17-
group = "com.github.bq"
19+
group = "com.github.hyperdevs-team"
1820

1921
buildscript {
2022
repositories {

settings.gradle.kts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
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
rootProject.name = "poeditor"

src/main/kotlin/com/bq/poeditor/gradle/Main.kt renamed to src/main/kotlin/com/hyperdevs/poeditor/gradle/Main.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/*
2+
* Copyright 2021 HyperDevs
3+
*
24
* Copyright 2020 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,7 +16,7 @@
1416
* limitations under the License.
1517
*/
1618

17-
package com.bq.poeditor.gradle
19+
package com.hyperdevs.poeditor.gradle
1820

1921
import io.github.cdimascio.dotenv.Dotenv
2022

src/main/kotlin/com/bq/poeditor/gradle/PoEditorPlugin.kt renamed to src/main/kotlin/com/hyperdevs/poeditor/gradle/PoEditorPlugin.kt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/*
2+
* Copyright 2021 HyperDevs
3+
*
24
* Copyright 2020 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,15 +16,15 @@
1416
* limitations under the License.
1517
*/
1618

17-
package com.bq.poeditor.gradle
19+
package com.hyperdevs.poeditor.gradle
1820

1921
import com.android.build.gradle.AppPlugin
2022
import com.android.build.gradle.LibraryExtension
2123
import com.android.build.gradle.LibraryPlugin
2224
import com.android.build.gradle.internal.dsl.BaseAppModuleExtension
23-
import com.bq.poeditor.gradle.ktx.registerNewTask
24-
import com.bq.poeditor.gradle.tasks.ImportPoEditorStringsTask
25-
import com.bq.poeditor.gradle.utils.*
25+
import com.hyperdevs.poeditor.gradle.ktx.registerNewTask
26+
import com.hyperdevs.poeditor.gradle.tasks.ImportPoEditorStringsTask
27+
import com.hyperdevs.poeditor.gradle.utils.*
2628
import org.gradle.api.NamedDomainObjectContainer
2729
import org.gradle.api.Plugin
2830
import org.gradle.api.Project

src/main/kotlin/com/bq/poeditor/gradle/PoEditorPluginExtension.kt renamed to src/main/kotlin/com/hyperdevs/poeditor/gradle/PoEditorPluginExtension.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/*
2+
* Copyright 2021 HyperDevs
3+
*
24
* Copyright 2020 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,7 +16,7 @@
1416
* limitations under the License.
1517
*/
1618

17-
package com.bq.poeditor.gradle
19+
package com.hyperdevs.poeditor.gradle
1820

1921
import org.gradle.api.Named
2022
import org.gradle.api.model.ObjectFactory

src/main/kotlin/com/bq/poeditor/gradle/PoEditorStringsImporter.kt renamed to src/main/kotlin/com/hyperdevs/poeditor/gradle/PoEditorStringsImporter.kt

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/*
2+
* Copyright 2021 HyperDevs
3+
*
24
* Copyright 2020 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,16 +16,16 @@
1416
* limitations under the License.
1517
*/
1618

17-
package com.bq.poeditor.gradle
19+
package com.hyperdevs.poeditor.gradle
1820

19-
import com.bq.poeditor.gradle.network.api.PoEditorApi
20-
import com.bq.poeditor.gradle.utils.DateJsonAdapter
21-
import com.bq.poeditor.gradle.network.PoEditorApiControllerImpl
22-
import com.bq.poeditor.gradle.utils.TABLET_REGEX_STRING
23-
import com.bq.poeditor.gradle.ktx.downloadUrlToString
24-
import com.bq.poeditor.gradle.utils.logger
25-
import com.bq.poeditor.gradle.xml.AndroidXmlWriter
26-
import com.bq.poeditor.gradle.xml.XmlPostProcessor
21+
import com.hyperdevs.poeditor.gradle.network.api.PoEditorApi
22+
import com.hyperdevs.poeditor.gradle.utils.DateJsonAdapter
23+
import com.hyperdevs.poeditor.gradle.network.PoEditorApiControllerImpl
24+
import com.hyperdevs.poeditor.gradle.utils.TABLET_REGEX_STRING
25+
import com.hyperdevs.poeditor.gradle.ktx.downloadUrlToString
26+
import com.hyperdevs.poeditor.gradle.utils.logger
27+
import com.hyperdevs.poeditor.gradle.xml.AndroidXmlWriter
28+
import com.hyperdevs.poeditor.gradle.xml.XmlPostProcessor
2729
import com.squareup.moshi.Moshi
2830
import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory
2931
import okhttp3.HttpUrl.Companion.toHttpUrl

src/main/kotlin/com/bq/poeditor/gradle/ktx/DocumentExtensions.kt renamed to src/main/kotlin/com/hyperdevs/poeditor/gradle/ktx/DocumentExtensions.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/*
2+
* Copyright 2021 HyperDevs
3+
*
24
* Copyright 2020 BQ
35
*
46
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -14,7 +16,7 @@
1416
* limitations under the License.
1517
*/
1618

17-
package com.bq.poeditor.gradle.ktx
19+
package com.hyperdevs.poeditor.gradle.ktx
1820

1921
import org.w3c.dom.Document
2022
import org.w3c.dom.bootstrap.DOMImplementationRegistry

0 commit comments

Comments
 (0)