Skip to content

Commit 4b7c6af

Browse files
committed
Merge branch 'release/v0.1.0' into main
2 parents 38eb0a1 + 5687fce commit 4b7c6af

File tree

12 files changed

+160
-104
lines changed

12 files changed

+160
-104
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Learn how to add code owners here:
22
# https://help.github.com/en/articles/about-code-owners
33

4-
* @jpedroschmitz
4+
* @Mayconsgs

CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
22

3-
# jetbrains Changelog
3+
# Omni Theme Changelog
44

5-
## [Unreleased]
5+
## v0.1.0
66

77
### Added
88

9-
- Initial scaffold created
10-
from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)
9+
- Initial version of plugin

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,13 @@
1616

1717
<img alt="License" src="https://img.shields.io/badge/license-MIT-%235FCC6F">
1818
</p>
19-
<!-- Plugin description end -->
20-
2119
<p align="center">
2220
<a href="#install">Install</a> •
2321
<a href="#team">Team</a> •
2422
<a href="#license">License</a>
2523
</p>
2624

27-
<p align="center">
28-
<img alt="Omni screnshoot for JetBrains" src="./screenshot.png">
29-
</p>
25+
![Omni Screenshot](./screenshot.png)
3026

3127
## Install
3228

@@ -36,10 +32,12 @@ All instructions can be found at [INSTALL.md](./INSTALL.md).
3632

3733
This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/getomni/template/graphs/contributors).
3834

39-
| [![João Pedro](https://github.com/jpedroschmitz.png?size=100)](https://github.com/jpedroschmitz) | [![Maycon Santos](https://github.com/mayconsgs.png?size=100)](https://github.com/mayconsgs) |
40-
| ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------- |
41-
| [João Pedro](https://github.com/jpedroschmitz) | [Maycon Santos](https://github.com/mayconsgs) |
35+
| [![Maycon Santos](https://github.com/mayconsgs.png?size=100)](https://github.com/mayconsgs) |
36+
| ------------------------------------------------------------------------------------------- |
37+
| [Maycon Santos](https://github.com/mayconsgs) |
4238

4339
## License
4440

4541
[MIT License](./LICENSE.md)
42+
43+
<!-- Plugin description end -->

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
33
pluginGroup=com.github.mayconsgs.jetbrains
44
pluginName=Omni Theme
5-
pluginVersion=0.0.2
5+
pluginVersion=0.1.0
66
pluginSinceBuild=202
77
pluginUntilBuild=203.*
88
pluginVerifierIdeVersions=2020.2.4, 2020.3.2, 2021.1

screenshot.png

-690 KB
Loading

src/main/kotlin/com/github/mayconsgs/jetbrains/MyBundle.kt renamed to src/main/kotlin/com/github/getomni/jetbrains/MyBundle.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.github.mayconsgs.jetbrains
1+
package com.github.getomni.jetbrains
22

33
import com.intellij.AbstractBundle
44
import org.jetbrains.annotations.NonNls

src/main/kotlin/com/github/mayconsgs/jetbrains/listeners/MyProjectManagerListener.kt renamed to src/main/kotlin/com/github/getomni/jetbrains/listeners/MyProjectManagerListener.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.github.mayconsgs.jetbrains.listeners
1+
package com.github.getomni.jetbrains.listeners
22

3-
import com.github.mayconsgs.jetbrains.services.MyProjectService
3+
import com.github.getomni.jetbrains.services.MyProjectService
44
import com.intellij.openapi.components.service
55
import com.intellij.openapi.project.Project
66
import com.intellij.openapi.project.ProjectManagerListener

src/main/kotlin/com/github/mayconsgs/jetbrains/services/MyApplicationService.kt renamed to src/main/kotlin/com/github/getomni/jetbrains/services/MyApplicationService.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.github.mayconsgs.jetbrains.services
1+
package com.github.getomni.jetbrains.services
22

3-
import com.github.mayconsgs.jetbrains.MyBundle
3+
import com.github.getomni.jetbrains.MyBundle
44

55
class MyApplicationService {
66
init {

src/main/kotlin/com/github/mayconsgs/jetbrains/services/MyProjectService.kt renamed to src/main/kotlin/com/github/getomni/jetbrains/services/MyProjectService.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.github.mayconsgs.jetbrains.services
1+
package com.github.getomni.jetbrains.services
22

3-
import com.github.mayconsgs.jetbrains.MyBundle
3+
import com.github.getomni.jetbrains.MyBundle
44
import com.intellij.openapi.project.Project
55

66
class MyProjectService(project: Project) {
Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
<idea-plugin url="https://github.com/Mayconsgs/jetbrains">
2-
<id>com.github.mayconsgs.jetbrains</id>
1+
<idea-plugin url="https://github.com/getomni/jetbrains">
2+
<id>com.github.getomni.jetbrains</id>
33
<name>Omni Theme</name>
4-
<vendor url="https://github.com/Mayconsgs" email="[email protected]">Maycon Santos</vendor>
4+
<vendor url="https://github.com/getomni" email="[email protected]">Omni Theme</vendor>
55
<depends>com.intellij.modules.platform</depends>
6+
67
<extensions defaultExtensionNs="com.intellij">
7-
<applicationService serviceImplementation="com.github.mayconsgs.jetbrains.services.MyApplicationService"/>
8-
<projectService serviceImplementation="com.github.mayconsgs.jetbrains.services.MyProjectService"/>
8+
<applicationService serviceImplementation="com.github.getomni.jetbrains.services.MyApplicationService"/>
9+
<projectService serviceImplementation="com.github.getomni.jetbrains.services.MyProjectService"/>
910
<themeProvider id="4cdf8912-6063-4823-b4aa-54024f8c94a4" path="/Omni.theme.json"/>
1011
</extensions>
12+
1113
<applicationListeners>
12-
<listener class="com.github.mayconsgs.jetbrains.listeners.MyProjectManagerListener"
14+
<listener class="com.github.getomni.jetbrains.listeners.MyProjectManagerListener"
1315
topic="com.intellij.openapi.project.ProjectManagerListener"/>
1416
</applicationListeners>
1517
</idea-plugin>

0 commit comments

Comments
 (0)