Skip to content

Commit 6911930

Browse files
committed
chore: prepare release
1 parent a87b216 commit 6911930

File tree

5 files changed

+31
-37
lines changed

5 files changed

+31
-37
lines changed

README.md

Lines changed: 19 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -18,35 +18,32 @@
1818
- [ ] Configure the [CODECOV_TOKEN](https://docs.codecov.com/docs/quick-start) secret for automated test coverage reports on PRs
1919

2020
<!-- Plugin description -->
21-
This Fancy IntelliJ Platform Plugin is going to be your implementation of the brilliant ideas that you have.
2221

23-
This specific section is a source for the [plugin.xml](/src/main/resources/META-INF/plugin.xml) file which will be extracted by the [Gradle](/build.gradle.kts) during the build process.
22+
[Github](https://github.com/j-plugins/call-plugin) | [Telegram](https://t.me/jb_plugins/50) | [Donation](https://github.com/xepozz/xepozz?tab=readme-ov-file#become-a-sponsor)
2423

25-
To keep everything working, do not remove `<!-- ... -->` sections.
26-
<!-- Plugin description end -->
27-
28-
## Installation
29-
30-
- Using the IDE built-in plugin system:
24+
## Inline Call
3125

32-
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>Marketplace</kbd> > <kbd>Search for "call-plugin"</kbd> >
33-
<kbd>Install</kbd>
26+
Inline Call plugin provides a way to call independent parts of your code:
3427

35-
- Using JetBrains Marketplace:
28+
- HTTP requests
29+
- SQL queries
30+
- Shell commands
3631

37-
Go to [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID) and install it by clicking the <kbd>Install to ...</kbd> button in case your IDE is running.
32+
## Donation
3833

39-
You can also download the [latest release](https://plugins.jetbrains.com/plugin/MARKETPLACE_ID/versions) from JetBrains Marketplace and install it manually using
40-
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>⚙️</kbd> > <kbd>Install plugin from disk...</kbd>
34+
Open-source tools can greatly improve workflows, helping developers and businesses save time and increase revenue.
35+
Many successful projects have been built on these tools, benefiting a wide community.
36+
However, maintaining and enhancing these resources requires continuous effort and investment.
4137

42-
- Manually:
38+
Support from the community helps keep these projects alive and ensures they remain useful for everyone.
39+
Donations play a key role in sustaining and improving these open-source initiatives.
4340

44-
Download the [latest release](https://github.com/xepozz/call-plugin/releases/latest) and install it manually using
45-
<kbd>Settings/Preferences</kbd> > <kbd>Plugins</kbd> > <kbd>⚙️</kbd> > <kbd>Install plugin from disk...</kbd>
41+
Chose the best option for you to say thank you:
4642

43+
[<img height="28" src="https://github.githubassets.com/assets/patreon-96b15b9db4b9.svg"> Patreon](https://patreon.com/xepozz)
44+
|
45+
[<img height="28" src="https://github.githubassets.com/assets/buy_me_a_coffee-63ed78263f6e.svg"> Buy me a coffee](https://buymeacoffee.com/xepozz)
46+
|
47+
[<img height="28" src="https://boosty.to/favicon.ico"> Boosty](https://boosty.to/xepozz)
4748

48-
---
49-
Plugin based on the [IntelliJ Platform Plugin Template][template].
50-
51-
[template]: https://github.com/JetBrains/intellij-platform-plugin-template
52-
[docs:plugin-description]: https://plugins.jetbrains.com/docs/intellij/plugin-user-experience.html#plugin-description-and-presentation
49+
<!-- Plugin description end -->

gradle.properties

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
# IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
22

33
pluginGroup = com.github.xepozz.call
4-
pluginName = call
4+
pluginName = Inline Call
55
pluginRepositoryUrl = https://github.com/xepozz/call-plugin
66
# SemVer format -> https://semver.org
7-
pluginVersion = 0.0.1
7+
pluginVersion = 2025.1.0
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
10-
pluginSinceBuild = 252
10+
pluginSinceBuild = 251
1111

1212
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
13-
platformVersion = 2025.2.5
13+
platformVersion = 2025.1.1
1414

1515
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1616
# Example: platformPlugins = com.jetbrains.php:203.4449.22, org.intellij.scala:2023.3.27@EAP
17-
platformPlugins =
17+
platformPlugins=com.jetbrains.php:251.23774.318,com.intellij.database:242.21829.149,com.intellij.modules.json:251.23774.318,ru.adelf.idea.dotenv:251.23774.318,com.jetbrains.hackathon.indices.viewer:1.30
1818
# Example: platformBundledPlugins = com.intellij.java
19-
platformBundledPlugins =
19+
platformBundledPlugins=com.intellij.modules.json,XPathView,org.jetbrains.plugins.yaml
2020
# Example: platformBundledModules = intellij.spellchecker
2121
platformBundledModules =
2222

src/main/kotlin/com/github/xepozz/call/MyBundle.kt renamed to src/main/kotlin/com/github/xepozz/call/CallBundle.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import org.jetbrains.annotations.NonNls
55
import org.jetbrains.annotations.PropertyKey
66

77
@NonNls
8-
private const val BUNDLE = "messages.MyBundle"
8+
private const val BUNDLE = "messages.CallBundle"
99

10-
object MyBundle : DynamicBundle(BUNDLE) {
10+
object CallBundle : DynamicBundle(BUNDLE) {
1111

1212
@JvmStatic
1313
fun message(@PropertyKey(resourceBundle = BUNDLE) key: String, vararg params: Any) =

src/main/resources/META-INF/plugin.xml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Plugin Configuration File. Read more: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html -->
22
<idea-plugin>
33
<id>com.github.xepozz.call</id>
4-
<name>Call</name>
4+
<name>Inline Call</name>
55
<vendor email="[email protected]" url="https://github.com/xepozz">Dmitrii Derepko (@xepozz)</vendor>
66

77
<depends>com.intellij.modules.platform</depends>
@@ -14,13 +14,10 @@
1414
<depends optional="true" config-file="plugin-database.xml">com.intellij.database</depends>
1515
<depends optional="true" config-file="plugin-dotenv.xml">ru.adelf.idea.dotenv</depends>
1616

17-
<resource-bundle>messages.MyBundle</resource-bundle>
17+
<resource-bundle>messages.CallBundle</resource-bundle>
1818

19-
<!-- <extensions defaultExtensionNs="com.intellij">-->
20-
<!-- <codeInsight.inlayProvider-->
21-
<!-- language=""-->
22-
<!-- implementationClass="com.github.xepozz.call.base.inlay.ExecutionInlayProvider"/>-->
23-
<!-- </extensions>-->
19+
<extensions defaultExtensionNs="com.intellij">
20+
</extensions>
2421

2522
<extensionPoints>
2623
<extensionPoint

src/main/resources/messages/CallBundle.properties

Whitespace-only changes.

0 commit comments

Comments
 (0)