Skip to content

Commit

Permalink
Patch v0.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
xerdnu committed Oct 31, 2023
1 parent a9a30ca commit 7e56393
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.0.11] (2023-10-31)

#### Changes

- Changed package name.
- Minor changes in JS code regarding logging.

## [0.0.10] (2023-10-24)

#### Improvements
Expand Down Expand Up @@ -91,6 +98,7 @@

- Initial release.

[0.0.11]: https://github.com/xerdnu/react-native-blasted-image/compare/v0.0.10...v0.0.11
[0.0.10]: https://github.com/xerdnu/react-native-blasted-image/compare/v0.0.9...v0.0.10
[0.0.9]: https://github.com/xerdnu/react-native-blasted-image/compare/v0.0.8...v0.0.9
[0.0.8]: https://github.com/xerdnu/react-native-blasted-image/compare/v0.0.7...v0.0.8
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.reactlibrary">
package="com.xerdnu.blastedimage">

</manifest>

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.reactlibrary;
package com.xerdnu.blastedimage;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.reactlibrary;
package com.xerdnu.blastedimage;

import com.facebook.react.ReactPackage;
import com.facebook.react.bridge.NativeModule;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.reactlibrary;
package com.xerdnu.blastedimage;

import com.bumptech.glide.Glide;
import com.facebook.react.uimanager.SimpleViewManager;
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ const BlastedImage = ({ source, width, height, style, resizeMode, isBackground,
} = remainingStyle;

if (typeof width === 'string' && width.includes('%')) {
console.log("Percentage-based width is not yet supported in BlastedImage. Please open an issue on github if you have a need for this.");
console.log("For maximum performance, BlastedImage does not support width defined as a percentage");
return;
}

if (typeof height === 'string' && height.includes('%')) {
console.log("Percentage-based height is not yet supported in BlastedImage. Please open an issue on github if you have a need for this.");
console.log("For maximum performance, BlastedImage does not support height defined as a percentage");
return;
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-blasted-image",
"version": "0.0.10",
"version": "0.0.11",
"description": "A simple yet powerful image component for React Native, powered by Glide and SDWebImage",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 7e56393

Please sign in to comment.