From 9934287b2fa3ef75f8d9a726e0a9ba014755932e Mon Sep 17 00:00:00 2001 From: mob-sakai Date: Thu, 31 May 2018 18:17:40 +0900 Subject: [PATCH 1/5] update release script --- release.sh | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/release.sh b/release.sh index 68ce7552..b9830e46 100755 --- a/release.sh +++ b/release.sh @@ -5,11 +5,13 @@ # Release the project with the following steps: # 1. Update the release version in package.json. -# 2. Update "CHANGELOG.md" using "github_changelog_generator-1.15.0.pre.rc". -# 3. Commit package.json and CHANGELOG.md. -# 4. Merge into master branch. +# 2. Open unity project to check compile error. +# 3. Update "CHANGELOG.md" using "github_changelog_generator-1.15.0.pre.rc". +# 4. Check changelog and continue proccess. # 5. Export unitypackage. -# 6. Release using "gh-release-3.2.0". (Upload unitypackage) +# 6. Commit package.json and CHANGELOG.md. +# 7. Merge into master branch. +# 8. Release using "gh-release-3.2.0". (with upload unitypackage) # input release version @@ -45,6 +47,12 @@ read -p "[? is the change log correct? (y/N):" yn case "$yn" in [yY]*) ;; *) exit ;; esac +# export unitypackage +PACKAGE_SRC=`node -pe 'require("./package.json").src'` +echo -e "\n>> Export unitypackage... ${PACKAGE_SRC}" +"$UNITY_EDITOR" -quit -batchmode -projectPath "`pwd`" -exportpackage "$PACKAGE_SRC" "$PACKAGE_NAME.unitypackage" +echo -e ">> OK" + # commit release files echo -e "\n>> Commit release files..." git add CHANGELOG.md -f @@ -63,13 +71,6 @@ git merge --ff master git push origin develop -# export unitypackage -PACKAGE_SRC=`node -pe 'require("./package.json").src'` -echo -e "\n>> Export unitypackage... ${PACKAGE_SRC}" -"$UNITY_EDITOR" -quit -batchmode -projectPath "`pwd`" -exportpackage "$PACKAGE_SRC" "$PACKAGE_NAME.unitypackage" -echo -e ">> OK" - - # upload unitypackage and release on Github gh-release --assets "$PACKAGE_NAME.unitypackage" From 95182bf539a0e5e3d665b7f5a60b508e432e706e Mon Sep 17 00:00:00 2001 From: mob-sakai Date: Thu, 31 May 2018 18:21:09 +0900 Subject: [PATCH 2/5] Fix readme link --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0e21c0b6..12ea1a0e 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,8 @@ AnimationClip is supported as a matter of course! | Component | Features | Screenshot | |-|-|-| -|**UIEffect**|Combine some visual effects.
See also [Development note](#why-is-uieffect-lightweight?).

**ToneMode:** Grayscale, Sepia, Nega, Pixelation, Hue shift, Cutoff (alpha-based), Mono (alpha-based)
**ColorMode:** Overwrite, Additive, Subtract
**BlurMode:** Fast, Medium, Detail

*NOTE: ToneMode, ColorMode and BlurMode are changeable only in editor.*
*NOTE: Custom Effect feature will be obsolete. Please use `UICustomEffect` component instead.*
*NOTE: Shadow feature will be obsolete. Please use `UIShadow` component instead.*|| -|**UICaptured EffectImage**|Capture a screenshot of a specific frame with effect, and display it.
See also [Development note](#how-does-uieffectcapturedimage-work?).

**ToneMode:** Grayscale, Sepia, Nega, Pixelation, Hue shift
**ColorMode:** Overwrite, Additive, Subtract
**BlurMode:** Fast, Medium, Detail|| +|**UIEffect**|Combine some visual effects.
See also [Development note](#why-is-uieffect-lightweight).

**ToneMode:** Grayscale, Sepia, Nega, Pixelation, Hue shift, Cutoff (alpha-based), Mono (alpha-based)
**ColorMode:** Overwrite, Additive, Subtract
**BlurMode:** Fast, Medium, Detail

*NOTE: ToneMode, ColorMode and BlurMode are changeable only in editor.*
*NOTE: Custom Effect feature will be obsolete. Please use `UICustomEffect` component instead.*
*NOTE: Shadow feature will be obsolete. Please use `UIShadow` component instead.*|| +|**UICaptured EffectImage**|Capture a screenshot of a specific frame with effect, and display it.
See also [Development note](#how-does-uieffectcapturedimage-work).

**ToneMode:** Grayscale, Sepia, Nega, Pixelation, Hue shift
**ColorMode:** Overwrite, Additive, Subtract
**BlurMode:** Fast, Medium, Detail|| |**UIShiny**|Apply shinning effect to a graphic.

**Options:** Location, Width, Rotation, Softness, Brightness, Highlight|| |**UIDissolve**|Apply dissolve effect to a graphic.

**ColorMode:** Overwrite, Additive, Subtract
**Options:** Location, Width, Rotation, Softness, Color|| From 949bfbf7ab5b2804081cf6f91bbd6853c77d04db Mon Sep 17 00:00:00 2001 From: mob-sakai Date: Thu, 31 May 2018 18:53:41 +0900 Subject: [PATCH 3/5] Fix scene path --- ProjectSettings/EditorBuildSettings.asset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset index 5e566b0e..58bf958f 100644 --- a/ProjectSettings/EditorBuildSettings.asset +++ b/ProjectSettings/EditorBuildSettings.asset @@ -6,4 +6,4 @@ EditorBuildSettings: serializedVersion: 2 m_Scenes: - enabled: 1 - path: Assets/UIEffect/Demo/Demo - UIEffect.unity + path: Assets/Coffee/UIExtensions/UIEffect/Demo/UIEffect_Demo.unity From d35167fc9646be4a785d6691bac7ba09af99f8c7 Mon Sep 17 00:00:00 2001 From: mob-sakai Date: Thu, 31 May 2018 19:20:06 +0900 Subject: [PATCH 4/5] Fix #82; Fix demo --- .../UIEffect/Demo/UIEffect_Demo.unity | 8 +- ProjectSettings/ProjectSettings.asset | 203 ++++++++++-------- 2 files changed, 118 insertions(+), 93 deletions(-) diff --git a/Assets/Coffee/UIExtensions/UIEffect/Demo/UIEffect_Demo.unity b/Assets/Coffee/UIExtensions/UIEffect/Demo/UIEffect_Demo.unity index ab47b2c3..6d856509 100644 --- a/Assets/Coffee/UIExtensions/UIEffect/Demo/UIEffect_Demo.unity +++ b/Assets/Coffee/UIExtensions/UIEffect/Demo/UIEffect_Demo.unity @@ -12588,7 +12588,7 @@ Animator: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 452111912} - m_Enabled: 0 + m_Enabled: 1 m_Avatar: {fileID: 0} m_Controller: {fileID: 9100000, guid: 6407849c9ce4141a9b34a33fbfef3d78, type: 2} m_CullingMode: 0 @@ -25696,7 +25696,7 @@ MonoBehaviour: m_HandleRect: {fileID: 50857158} m_Direction: 2 m_Value: 1 - m_Size: 0.06367983 + m_Size: 0.12152907 m_NumberOfSteps: 0 m_OnValueChanged: m_PersistentCalls: @@ -51654,7 +51654,7 @@ Animator: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1970251575} - m_Enabled: 0 + m_Enabled: 1 m_Avatar: {fileID: 0} m_Controller: {fileID: 9100000, guid: 6407849c9ce4141a9b34a33fbfef3d78, type: 2} m_CullingMode: 0 @@ -53048,7 +53048,7 @@ MonoBehaviour: m_UiScaleMode: 1 m_ReferencePixelsPerUnit: 100 m_ScaleFactor: 1 - m_ReferenceResolution: {x: 800, y: 600} + m_ReferenceResolution: {x: 800, y: 1200} m_ScreenMatchMode: 0 m_MatchWidthOrHeight: 0 m_PhysicalUnit: 3 diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 49c43e3f..c200c662 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -3,7 +3,8 @@ --- !u!129 &1 PlayerSettings: m_ObjectHideFlags: 0 - serializedVersion: 8 + serializedVersion: 10 + productGUID: 893acf534ad534977b834042374da133 AndroidProfiler: 0 defaultScreenOrientation: 4 targetDevice: 2 @@ -13,20 +14,46 @@ PlayerSettings: productName: UIEffect defaultCursor: {fileID: 0} cursorHotspot: {x: 0, y: 0} + m_SplashScreenBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21176471, a: 1} m_ShowUnitySplashScreen: 1 + m_ShowUnitySplashLogo: 1 + m_SplashScreenOverlayOpacity: 1 + m_SplashScreenAnimation: 1 + m_SplashScreenLogoStyle: 1 + m_SplashScreenDrawMode: 0 + m_SplashScreenBackgroundAnimationZoom: 1 + m_SplashScreenLogoAnimationZoom: 1 + m_SplashScreenBackgroundLandscapeAspect: 1 + m_SplashScreenBackgroundPortraitAspect: 1 + m_SplashScreenBackgroundLandscapeUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenBackgroundPortraitUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenLogos: [] + m_SplashScreenBackgroundLandscape: {fileID: 0} + m_SplashScreenBackgroundPortrait: {fileID: 0} m_VirtualRealitySplashScreen: {fileID: 0} + m_HolographicTrackingLossScreen: {fileID: 0} defaultScreenWidth: 1024 defaultScreenHeight: 768 - defaultScreenWidthWeb: 960 - defaultScreenHeightWeb: 600 - m_RenderingPath: 1 - m_MobileRenderingPath: 1 + defaultScreenWidthWeb: 600 + defaultScreenHeightWeb: 800 + m_StereoRenderingPath: 0 m_ActiveColorSpace: 0 m_MTRendering: 1 m_MobileMTRendering: 0 - m_Stereoscopic3D: 0 + m_StackTraceTypes: 010000000100000001000000010000000100000001000000 iosShowActivityIndicatorOnLoading: -1 androidShowActivityIndicatorOnLoading: -1 + tizenShowActivityIndicatorOnLoading: -1 iosAppInBackgroundBehavior: 0 displayResolutionDialog: 1 iosAllowHTTPDownload: 1 @@ -41,7 +68,7 @@ PlayerSettings: defaultIsNativeResolution: 1 runInBackground: 0 captureSingleScreen: 0 - Override IPod Music: 0 + muteOtherAudioSources: 0 Prepare IOS For Recording: 0 submitAnalytics: 1 usePlayerLog: 1 @@ -50,6 +77,7 @@ PlayerSettings: resizableWindow: 0 useMacAppStoreValidation: 0 gpuSkinning: 0 + graphicsJobs: 0 xboxPIXTextureCapture: 0 xboxEnableAvatar: 0 xboxEnableKinect: 0 @@ -68,8 +96,10 @@ PlayerSettings: n3dsEnableSharedListOpt: 1 n3dsEnableVSync: 0 uiUse16BitDepthBuffer: 0 + ignoreAlphaClear: 0 xboxOneResolution: 0 - ps3SplashScreen: {fileID: 0} + xboxOneMonoLoggingLevel: 0 + xboxOneLoggingLevel: 1 videoMemoryForVertexBuffers: 0 psp2PowerMode: 0 psp2AcquireBGM: 1 @@ -91,11 +121,10 @@ PlayerSettings: bundleIdentifier: com.coffee.uieffect bundleVersion: 1.0 preloadedAssets: [] - metroEnableIndependentInputSource: 0 - metroEnableLowLatencyPresentationAPI: 0 + metroInputSource: 0 + m_HolographicPauseOnTrackingLoss: 1 xboxOneDisableKinectGpuReservation: 0 - virtualRealitySupported: 0 - productGUID: 893acf534ad534977b834042374da133 + protectGraphicsMemory: 0 AndroidBundleVersionCode: 1 AndroidMinSdkVersion: 9 AndroidPreferredInstallLocation: 1 @@ -115,7 +144,10 @@ PlayerSettings: serializedVersion: 2 m_Bits: 238 iPhoneSdkVersion: 988 - iPhoneTargetOSVersion: 22 + iOSTargetOSVersionString: 6.0 + tvOSSdkVersion: 0 + tvOSRequireExtendedGameController: 0 + tvOSTargetOSVersionString: uIPrerenderedIcon: 0 uIRequiresPersistentWiFi: 0 uIRequiresFullScreen: 1 @@ -133,6 +165,10 @@ PlayerSettings: iPadLandscapeSplashScreen: {fileID: 0} iPadHighResLandscapeSplashScreen: {fileID: 0} appleTVSplashScreen: {fileID: 0} + tvOSSmallIconLayers: [] + tvOSLargeIconLayers: [] + tvOSTopShelfImageLayers: [] + tvOSTopShelfImageWideLayers: [] iOSLaunchScreenType: 0 iOSLaunchScreenPortrait: {fileID: 0} iOSLaunchScreenLandscape: {fileID: 0} @@ -151,6 +187,13 @@ PlayerSettings: iOSLaunchScreeniPadSize: 100 iOSLaunchScreeniPadCustomXibPath: iOSDeviceRequirements: [] + iOSURLSchemes: [] + iOSBackgroundModes: 0 + iOSMetalForceHardShadows: 0 + appleDeveloperTeamID: + iOSManualSigningProvisioningProfileID: + tvOSManualSigningProvisioningProfileID: + appleEnableAutomaticSigning: 0 AndroidTargetDevice: 0 AndroidSplashScreenScale: 0 androidSplashScreen: {fileID: 0} @@ -174,6 +217,9 @@ PlayerSettings: m_Height: 128 m_BuildTargetBatching: [] m_BuildTargetGraphicsAPIs: [] + m_BuildTargetVRSettings: [] + openGLRequireES31: 0 + openGLRequireES31AEP: 0 webPlayerTemplate: APPLICATION:Default m_TemplateCustomTags: {} wiiUTitleID: 0005000011000000 @@ -192,12 +238,15 @@ PlayerSettings: wiiUSystemHeapSize: 128 wiiUTVStartupScreen: {fileID: 0} wiiUGamePadStartupScreen: {fileID: 0} + wiiUDrcBufferDisabled: 0 wiiUProfilerLibPath: actionOnDotNetUnhandledException: 1 enableInternalProfiler: 0 logObjCUncaughtExceptions: 1 enableCrashReportAPI: 0 + cameraUsageDescription: locationUsageDescription: + microphoneUsageDescription: XboxTitleId: XboxImageXexPath: XboxSpaPath: @@ -208,24 +257,6 @@ PlayerSettings: xboxAdditionalTitleMemorySize: 0 xboxDeployKinectHeadOrientation: 0 xboxDeployKinectHeadPosition: 0 - ps3TitleConfigPath: - ps3DLCConfigPath: - ps3ThumbnailPath: - ps3BackgroundPath: - ps3SoundPath: - ps3NPAgeRating: 12 - ps3TrophyCommId: - ps3NpCommunicationPassphrase: - ps3TrophyPackagePath: - ps3BootCheckMaxSaveGameSizeKB: 128 - ps3TrophyCommSig: - ps3SaveGameSlots: 1 - ps3TrialMode: 0 - ps3VideoMemoryForAudio: 0 - ps3EnableVerboseMemoryStats: 0 - ps3UseSPUForUmbra: 0 - ps3EnableMoveSupport: 1 - ps3DisableDolbyEncoding: 0 ps4NPAgeRating: 12 ps4NPTitleSecret: ps4NPTrophyPackPath: @@ -237,7 +268,9 @@ PlayerSettings: ps4AppType: 0 ps4ParamSfxPath: ps4VideoOutPixelFormat: 0 - ps4VideoOutResolution: 4 + ps4VideoOutInitialWidth: 1920 + ps4VideoOutBaseModeInitialWidth: 1920 + ps4VideoOutReprojectionRate: 120 ps4PronunciationXMLPath: ps4PronunciationSIGPath: ps4BackgroundImagePath: @@ -251,6 +284,7 @@ PlayerSettings: ps4NPtitleDatPath: ps4RemotePlayKeyAssignment: -1 ps4RemotePlayKeyMappingDir: + ps4PlayTogetherPlayerCount: 0 ps4EnterButtonAssignment: 1 ps4ApplicationParam1: 0 ps4ApplicationParam2: 0 @@ -258,24 +292,35 @@ PlayerSettings: ps4ApplicationParam4: 0 ps4DownloadDataSize: 0 ps4GarlicHeapSize: 2048 + ps4ProGarlicHeapSize: 2560 ps4Passcode: 5PN2qmWqBlQ9wQj99nsQzldVI5ZuGXbE + ps4UseDebugIl2cppLibs: 0 ps4pnSessions: 1 ps4pnPresence: 1 ps4pnFriends: 1 ps4pnGameCustomData: 1 playerPrefsSupport: 0 + restrictedAudioUsageRights: 0 + ps4UseResolutionFallback: 0 ps4ReprojectionSupport: 0 ps4UseAudio3dBackend: 0 ps4SocialScreenEnabled: 0 + ps4ScriptOptimizationLevel: 3 ps4Audio3dVirtualSpeakerCount: 14 ps4attribCpuUsage: 0 ps4PatchPkgPath: ps4PatchLatestPkgPath: ps4PatchChangeinfoPath: + ps4PatchDayOne: 0 ps4attribUserManagement: 0 ps4attribMoveSupport: 0 ps4attrib3DSupport: 0 ps4attribShareSupport: 0 + ps4attribExclusiveVR: 0 + ps4disableAutoHideSplash: 0 + ps4videoRecordingFeaturesUsed: 0 + ps4contentSearchFeaturesUsed: 0 + ps4attribEyeToEyeDistanceSettingVR: 0 ps4IncludedModules: [] monoEnv: psp2Splashimage: {fileID: 0} @@ -324,9 +369,35 @@ PlayerSettings: psp2UseLibLocation: 0 psp2InfoBarOnStartup: 0 psp2InfoBarColor: 0 + psp2UseDebugIl2cppLibs: 0 psmSplashimage: {fileID: 0} + splashScreenBackgroundSourceLandscape: {fileID: 0} + splashScreenBackgroundSourcePortrait: {fileID: 0} spritePackerPolicy: + webGLMemorySize: 256 + webGLExceptionSupport: 1 + webGLDataCaching: 0 + webGLDebugSymbols: 0 + webGLEmscriptenArgs: + webGLModulesDirectory: + webGLTemplate: APPLICATION:Default + webGLAnalyzeBuildSize: 0 + webGLUseEmbeddedResources: 0 + webGLUseWasm: 0 + webGLCompressionFormat: 1 scriptingDefineSymbols: {} + platformArchitecture: + iOS: 2 + scriptingBackend: + Android: 0 + WebGL: 1 + WebPlayer: 0 + iOS: 1 + incrementalIl2cppBuild: + iOS: 1 + additionalIl2CppArgs: + m_RenderingPath: 1 + m_MobileRenderingPath: 1 metroPackageName: UIEffect metroPackageVersion: metroCertificatePath: @@ -353,29 +424,14 @@ PlayerSettings: metroFTAFileTypes: [] metroProtocolName: metroCompilationOverrides: 1 - blackberryDeviceAddress: - blackberryDevicePassword: - blackberryTokenPath: - blackberryTokenExires: - blackberryTokenAuthor: - blackberryTokenAuthorId: - blackberryCskPassword: - blackberrySaveLogPath: - blackberrySharedPermissions: 0 - blackberryCameraPermissions: 0 - blackberryGPSPermissions: 0 - blackberryDeviceIDPermissions: 0 - blackberryMicrophonePermissions: 0 - blackberryGamepadSupport: 0 - blackberryBuildId: 0 - blackberryLandscapeSplashScreen: {fileID: 0} - blackberryPortraitSplashScreen: {fileID: 0} - blackberrySquareSplashScreen: {fileID: 0} tizenProductDescription: tizenProductURL: tizenSigningProfileName: tizenGPSPermissions: 0 tizenMicrophonePermissions: 0 + tizenDeploymentTarget: + tizenDeploymentTargetType: 0 + tizenMinOSVersion: 0 n3dsUseExtSaveData: 0 n3dsCompressStaticMem: 1 n3dsExtSaveDataNumber: 0x12345 @@ -405,51 +461,20 @@ PlayerSettings: XboxOnePackageEncryption: 0 XboxOnePackageUpdateGranularity: 2 XboxOneDescription: + XboxOneLanguage: + - enus + XboxOneCapability: [] + XboxOneGameRating: {} XboxOneIsContentPackage: 0 XboxOneEnableGPUVariability: 0 XboxOneSockets: {} XboxOneSplashScreen: {fileID: 0} XboxOneAllowedProductIds: [] XboxOnePersistentLocalStorageSize: 0 - intPropertyNames: - - Android::ScriptingBackend - - WebGL::ScriptingBackend - - WebGL::audioCompressionFormat - - WebGL::exceptionSupport - - WebGL::memorySize - - WebPlayer::ScriptingBackend - - iOS::Architecture - - iOS::EnableIncrementalBuildSupportForIl2cpp - - iOS::ScriptingBackend - Android::ScriptingBackend: 0 - WebGL::ScriptingBackend: 1 - WebGL::audioCompressionFormat: 4 - WebGL::exceptionSupport: 1 - WebGL::memorySize: 256 - WebPlayer::ScriptingBackend: 0 - iOS::Architecture: 2 - iOS::EnableIncrementalBuildSupportForIl2cpp: 1 - iOS::ScriptingBackend: 1 - boolPropertyNames: - - WebGL::analyzeBuildSize - - WebGL::dataCaching - - WebGL::useEmbeddedResources - - XboxOne::enus - WebGL::analyzeBuildSize: 0 - WebGL::dataCaching: 0 - WebGL::useEmbeddedResources: 0 - XboxOne::enus: 1 - stringPropertyNames: - - Build_ServiceEnabled::Build_ServiceEnabled - - UNet_ServiceEnabled::UNet_ServiceEnabled - - WebGL::emscriptenArgs - - WebGL::template - - additionalIl2CppArgs::additionalIl2CppArgs - Build_ServiceEnabled::Build_ServiceEnabled: True - UNet_ServiceEnabled::UNet_ServiceEnabled: True - WebGL::emscriptenArgs: - WebGL::template: APPLICATION:Default - additionalIl2CppArgs::additionalIl2CppArgs: + vrEditorSettings: {} + cloudServicesEnabled: + Build: 1 + UNet: 1 cloudProjectId: 9c73f463-d463-4a0a-b60d-c348116f2a23 projectName: UIEffect organizationId: mob-sakai From 58c668769c46eac0f6f85343a453b4af4fc72c58 Mon Sep 17 00:00:00 2001 From: mob-sakai Date: Thu, 31 May 2018 20:04:13 +0900 Subject: [PATCH 5/5] update change log --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 581f848c..a0223abd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v2.5.1](https://github.com/mob-sakai/UIEffect/tree/v2.5.1) (2018-05-31) + +[Full Changelog](https://github.com/mob-sakai/UIEffect/compare/v2.5.0...v2.5.1) + +**Fixed bugs:** + +- Fix demo [\#82](https://github.com/mob-sakai/UIEffect/issues/82) + ## [v2.5.0](https://github.com/mob-sakai/UIEffect/tree/v2.5.0) (2018-05-31) [Full Changelog](https://github.com/mob-sakai/UIEffect/compare/v2.4.1...v2.5.0) diff --git a/package.json b/package.json index c73ffcbe..de7c716a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "UIEffect", - "version": "2.5.0", + "version": "2.5.1", "repository": { "type": "git", "url": "git+https://github.com/mob-sakai/UIEffect.git"