Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
Minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
InSyncWithFoo committed Aug 10, 2024
1 parent 6acbe77 commit e025452
Show file tree
Hide file tree
Showing 15 changed files with 50 additions and 97 deletions.
1 change: 0 additions & 1 deletion CHANGELOG_CODE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

# Code changelog


This page documents code changes.
For user-facing changes, see [`CHANGELOG.md`][_-1].

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ intellijPlatform {
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
channels = providers.gradleProperty("pluginVersion").map {
listOf("""(?<=-)[^-]+)(?=\.)""".toRegex().find(it)?.value ?: "default")
listOf("""(?<=-)([^-]+)(?=\.)""".toRegex().find(it)?.value ?: "default")
}
}

Expand Down
12 changes: 4 additions & 8 deletions docs/assets/icon-outline.svg → docs/assets/icon-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 5 additions & 9 deletions docs/assets/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ exclude_docs: |
theme:
name: material
favicon: assets/icon.svg
logo: assets/icon-outline.svg
logo: assets/icon-white.svg
palette:
-
media: "(prefers-color-scheme: light)"
Expand Down
4 changes: 0 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}

rootProject.name = "uv"
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,6 @@ internal class UVProjectSettingsStep(projectGenerator: DirectoryProjectGenerator
checkBox(PyBundle.message("new.project.git")).bindSelected(initializeGit)
}

row("") {}

panel {
rowWithTopGap(PySdkBundle.message("python.venv.base.label")) {
// TODO: Switch to com.jetbrains.python.sdk.add.v2.pythonInterpreterComboBox
Expand Down
14 changes: 5 additions & 9 deletions src/main/resources/META-INF/pluginIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 5 additions & 9 deletions src/main/resources/icons/100.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 4 additions & 8 deletions src/main/resources/icons/16-simplified-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 5 additions & 9 deletions src/main/resources/icons/16-simplified.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 5 additions & 9 deletions src/main/resources/icons/16.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 5 additions & 9 deletions src/main/resources/icons/18-simplified.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 5 additions & 9 deletions src/main/resources/icons/18.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 5 additions & 9 deletions src/main/resources/icons/330.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e025452

Please sign in to comment.