Skip to content

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Jun 23, 2023
2 parents 1e5b30c + cc42b5b commit a7deb2f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.

## [Unreleased]
## [1.0.0-beta.5] - 2023-06-23
## [1.0.0] - 2023-06-23

### Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pluginName = IntelliJ Tauri Plugin
pluginRepositoryUrl = https://github.com/KartanHQ/intellij-tauri

# SemVer format -> https://semver.org
pluginVersion = 1.0.0-beta.5
pluginVersion = 1.0.0

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 213
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ class TauriCliProjectGenerator : NpmPackageProjectGenerator() {

override fun getNpxCommands() = listOf(NpxPackageDescriptor.NpxCommand(packageName, npxCommand))

override fun generateInTemp(): Boolean = false
override fun generateInTemp(): Boolean = true

override fun generatorArgs(project: Project?, dir: VirtualFile?, settings: Settings?): Array<String> =
arrayOf(".")
override fun generatorArgs(project: Project?, dir: VirtualFile?, settings: Settings?) =
project?.let { arrayOf(it.name) }

override fun getIcon(): Icon = TauriIcons.ProjectGenerator
}

0 comments on commit a7deb2f

Please sign in to comment.