-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main'
- Loading branch information
Showing
10 changed files
with
61 additions
and
38 deletions.
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,25 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Build" type="GradleRunConfiguration" factoryName="Gradle"> | ||
<ExternalSystemSettings> | ||
<option name="executionName" /> | ||
<option name="externalProjectPath" value="$PROJECT_DIR$" /> | ||
<option name="externalSystemIdString" value="GRADLE" /> | ||
<option name="scriptParameters" value="-x :test" /> | ||
<option name="taskDescriptions"> | ||
<list /> | ||
</option> | ||
<option name="taskNames"> | ||
<list> | ||
<option value=":clean" /> | ||
<option value=":build" /> | ||
</list> | ||
</option> | ||
<option name="vmOptions" /> | ||
</ExternalSystemSettings> | ||
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess> | ||
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess> | ||
<DebugAllEnabled>false</DebugAllEnabled> | ||
<RunAsTest>false</RunAsTest> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
4 changes: 2 additions & 2 deletions
4
.run/Publish Distribution.run.xml → .run/Publish Distribution - Sonar.run.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,14 +39,14 @@ that we can provide a better library/API for them. Please, feel free to share if | |
## Installation | ||
|
||
The library is available | ||
from [Maven Central](https://search.maven.org/artifact/io.github.g0dkar/qrcode-kotlin/4.0.2/qrcode-kotlin) | ||
from [Maven Central](https://search.maven.org/artifact/io.github.g0dkar/qrcode-kotlin/4.0.5/qrcode-kotlin) | ||
and [NPM JS](https://www.npmjs.com/package/qrcode-kotlin), so you can add it to your project as a dependency like any | ||
other: | ||
|
||
**Gradle:** | ||
|
||
```groovy | ||
implementation("io.github.g0dkar:qrcode-kotlin:4.0.2") | ||
implementation("io.github.g0dkar:qrcode-kotlin:4.0.5") | ||
``` | ||
|
||
**Maven:** | ||
|
@@ -55,20 +55,20 @@ implementation("io.github.g0dkar:qrcode-kotlin:4.0.2") | |
<dependency> | ||
<groupId>io.github.g0dkar</groupId> | ||
<artifactId>qrcode-kotlin-jvm</artifactId> <!-- or qrcode-kotlin-android --> | ||
<version>4.0.2</version> | ||
<version>4.0.5</version> | ||
</dependency> | ||
``` | ||
|
||
**NodeJS:** | ||
|
||
```shell | ||
npm install [email protected].2 | ||
npm install [email protected].5 | ||
``` | ||
|
||
**Browser:** | ||
|
||
```html | ||
<script src="https://cdn.jsdelivr.net/gh/g0dkar/qrcode-kotlin@main/release/qrcodeKotlin.min.js" type="application/javascript"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/g0dkar/qrcode-kotlin@main/release/qrcode-kotlin.min.js" type="application/javascript"></script> | ||
``` | ||
|
||
## Usage | ||
|
@@ -159,7 +159,7 @@ The main changes coming from `v3.3.0` are: | |
3. A bunch of optimizations on how the QRCode is drawn. Previously, we'd had a canvas for each square, which would then | ||
be copied into the QRCode. This was changed to have just one large canvas where each square will be individually | ||
drawn directly. | ||
4. ![Experimental](https://img.shields.io/badge/Experimental-critical) iOS and tvOS Support: Starting from `v4.0.2` an | ||
4. ![Experimental](https://img.shields.io/badge/Experimental-critical) iOS and tvOS Support: Starting from `v4.0.5` an | ||
initial implementation of the `QRCodeGraphics` so that iOS and tvOS are now supported. **Any and | ||
all [feedback](https://github.com/g0dkar/qrcode-kotlin/issues/85) are very welcome!** | ||
|
||
|
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 |
---|---|---|
|
@@ -39,13 +39,13 @@ Por favor, sinta-se livre para compartilhar se e como você utiliza este projeto | |
## Instalação | ||
|
||
A biblioteca está disponível através | ||
da [Maven Central](https://search.maven.org/artifact/io.github.g0dkar/qrcode-kotlin/4.0.2/qrcode-kotlin) e | ||
da [Maven Central](https://search.maven.org/artifact/io.github.g0dkar/qrcode-kotlin/4.0.5/qrcode-kotlin) e | ||
do [NPM JS](https://www.npmjs.com/package/qrcode-kotlin), portanto basta adicioná-la a seu projeto como qualquer outra: | ||
|
||
**Gradle:** | ||
|
||
```groovy | ||
implementation("io.github.g0dkar:qrcode-kotlin:4.0.2") | ||
implementation("io.github.g0dkar:qrcode-kotlin:4.0.5") | ||
``` | ||
|
||
**Maven:** | ||
|
@@ -54,20 +54,20 @@ implementation("io.github.g0dkar:qrcode-kotlin:4.0.2") | |
<dependency> | ||
<groupId>io.github.g0dkar</groupId> | ||
<artifactId>qrcode-kotlin-jvm</artifactId> <!-- ou qrcode-kotlin-android --> | ||
<version>4.0.2</version> | ||
<version>4.0.5</version> | ||
</dependency> | ||
``` | ||
|
||
**NodeJS:** | ||
|
||
```shell | ||
npm install [email protected].2 | ||
npm install [email protected].5 | ||
``` | ||
|
||
**Browser:** | ||
|
||
```html | ||
<script src="https://cdn.jsdelivr.net/gh/g0dkar/qrcode-kotlin@main/release/qrcodeKotlin.min.js" type="application/javascript"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/g0dkar/qrcode-kotlin@main/release/qrcode-kotlin.min.js" type="application/javascript"></script> | ||
``` | ||
|
||
## Uso | ||
|
@@ -159,7 +159,7 @@ As principais mudanças vindo da versão `v3.3.0` são: | |
quadrado, o qual era copiado no canvas do QRCode principal. Isto foi mudado para termos apenas um grande canvas onde | ||
cada quadrado individual será desenhado diretamente. | ||
4. ![Experimental](https://img.shields.io/badge/Experimental-critical) Suporte a iOS e tvOS: A partir da | ||
versão `v4.0.2`, uma implementação experimental inicial da classe `QRCodeGraphics` foi criada para que o iOS e tvOS | ||
versão `v4.0.5`, uma implementação experimental inicial da classe `QRCodeGraphics` foi criada para que o iOS e tvOS | ||
sejam suportados. **Todo e qualquer [feedback](https://github.com/g0dkar/qrcode-kotlin/issues/85) é muito bem-vindo!** (pode comentar em português mesmo) | ||
|
||
## Licença | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version=4.0.4 | ||
version=4.0.5 | ||
kotlin.code.style=official | ||
|
||
# JS | ||
|
Binary file not shown.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.