From 046b656d08072058ff0b0ba8a8c8fcfb5f12f877 Mon Sep 17 00:00:00 2001 From: madmuv Date: Fri, 4 Nov 2022 17:01:44 +0700 Subject: [PATCH 1/6] - fixed error descriptor and ide version --- recompose-idea/build.gradle.kts | 2 +- recompose-idea/src/main/resources/META-INF/plugin.xml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/recompose-idea/build.gradle.kts b/recompose-idea/build.gradle.kts index af37a00..0a3466c 100644 --- a/recompose-idea/build.gradle.kts +++ b/recompose-idea/build.gradle.kts @@ -46,6 +46,6 @@ tasks { } patchPluginXml { sinceBuild("193") - untilBuild("202.*") + untilBuild("213.*") } } diff --git a/recompose-idea/src/main/resources/META-INF/plugin.xml b/recompose-idea/src/main/resources/META-INF/plugin.xml index 5cc8c52..2b717e7 100644 --- a/recompose-idea/src/main/resources/META-INF/plugin.xml +++ b/recompose-idea/src/main/resources/META-INF/plugin.xml @@ -14,5 +14,10 @@ strings.RecomposePluginBundle + project site. + ]]> + From 12b71f0ce3a74661ca91d3a60eccd217cd7fffa9 Mon Sep 17 00:00:00 2001 From: madmuv Date: Fri, 4 Nov 2022 17:04:47 +0700 Subject: [PATCH 2/6] - added thai read me --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 3cf1552..381e06a 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,10 @@ Arguments: Either import the project into [IntelliJ IDEA](https://www.jetbrains.com/idea/) or use [Gradle](https://gradle.org/) on the command line (via the provided `gradlew` wrapper). +สำหรับ IntelliJ IDEA +ใช้ tab gradle build plugin โดยการกด build ใน recompose-idea/Tasks/build +[](../../../../../var/folders/w0/rhb8ybv567ld4jtbbxh9sbgr0000gn/T/TemporaryItems/NSIRD_screencaptureui_xg5ane/Screen Shot 2565-11-04 at 17.03.22.png) + ### Modules * **recompose-ast**: Contains the data classes for the Abstract Syntax Tree (AST) representing a parsed XML layout. From f8f8c205c81acf9cf8087c2120e2a6a8478bdb8d Mon Sep 17 00:00:00 2001 From: madmuv <31174302+madmuv@users.noreply.github.com> Date: Tue, 8 Nov 2022 11:03:02 +0700 Subject: [PATCH 3/6] Update README.md --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 381e06a..c3ff2aa 100644 --- a/README.md +++ b/README.md @@ -34,10 +34,6 @@ Arguments: Either import the project into [IntelliJ IDEA](https://www.jetbrains.com/idea/) or use [Gradle](https://gradle.org/) on the command line (via the provided `gradlew` wrapper). -สำหรับ IntelliJ IDEA -ใช้ tab gradle build plugin โดยการกด build ใน recompose-idea/Tasks/build -[](../../../../../var/folders/w0/rhb8ybv567ld4jtbbxh9sbgr0000gn/T/TemporaryItems/NSIRD_screencaptureui_xg5ane/Screen Shot 2565-11-04 at 17.03.22.png) - ### Modules * **recompose-ast**: Contains the data classes for the Abstract Syntax Tree (AST) representing a parsed XML layout. @@ -82,4 +78,4 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -``` \ No newline at end of file +``` From 8576dc522a6f891ae1d6761d16658d42b4c70ee1 Mon Sep 17 00:00:00 2001 From: madmuv <31174302+madmuv@users.noreply.github.com> Date: Tue, 8 Nov 2022 11:06:21 +0700 Subject: [PATCH 4/6] Update README.md From d768d3ac91e241dd20a92e1566ca3827c1281f94 Mon Sep 17 00:00:00 2001 From: madmuv Date: Tue, 8 Nov 2022 11:11:08 +0700 Subject: [PATCH 5/6] - removed space from README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c3ff2aa..3cf1552 100644 --- a/README.md +++ b/README.md @@ -78,4 +78,4 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -``` +``` \ No newline at end of file From eb6380842a50b7b0f23c981a7a05647d7ca19579 Mon Sep 17 00:00:00 2001 From: madmuv Date: Tue, 28 Feb 2023 19:25:28 +0700 Subject: [PATCH 6/6] - remove version --- recompose-idea/build.gradle.kts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/recompose-idea/build.gradle.kts b/recompose-idea/build.gradle.kts index 0a3466c..dba8991 100644 --- a/recompose-idea/build.gradle.kts +++ b/recompose-idea/build.gradle.kts @@ -26,7 +26,6 @@ dependencies { intellij { pluginName = "Recompose" version = "2019.3" - updateSinceUntilBuild = false downloadSources = true updateSinceUntilBuild = true @@ -44,8 +43,4 @@ tasks { kotlinOptions.jvmTarget = "1.8" } } - patchPluginXml { - sinceBuild("193") - untilBuild("213.*") - } }