Skip to content

Commit 77968f4

Browse files
author
Motzkiste
authored
Merge pull request #12 from EraTiem-Network/next
v1.0.0-alpha
2 parents d3dc1c4 + 6829449 commit 77968f4

9 files changed

Lines changed: 60 additions & 54 deletions

File tree

.github/workflows/build.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,32 @@ jobs:
2727
# Build plugin and provide the artifact for the next workflow jobs
2828
build:
2929
name: Build
30-
runs-on: ubuntu-latest
30+
runs-on: self-hosted
3131
outputs:
3232
version: ${{ steps.properties.outputs.version }}
3333
changelog: ${{ steps.properties.outputs.changelog }}
3434
steps:
35+
# Cleanup Workspace
36+
# - name: Clean Workspace
37+
# shell: bash
38+
# run: |
39+
# echo "Listing 100 largest packages"
40+
# dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 100
41+
# df -h
42+
# echo "Removing large packages"
43+
# sudo apt-get remove -y '^dotnet-.*'
44+
# sudo apt-get remove -y '^llvm-.*'
45+
# sudo apt-get remove -y 'php.*'
46+
# sudo apt-get remove -y '^mongodb-.*'
47+
# sudo apt-get remove -y '^mysql-.*'
48+
# sudo apt-get remove -y azure-cli google-cloud-sdk hhvm google-chrome-stable firefox powershell mono-devel libgl1-mesa-dri
49+
# sudo apt-get autoremove -y
50+
# sudo apt-get clean
51+
# df -h
52+
# echo "Removing large directories"
53+
# # deleting 15GB
54+
# rm -rf /usr/share/dotnet/
55+
# df -h
3556

3657
# Check out current repository
3758
- name: Fetch Sources

.github/workflows/cleanup-disc.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
# Prepare and publish the plugin to the Marketplace repository
1212
release:
1313
name: Publish Plugin
14-
runs-on: ubuntu-latest
14+
runs-on: self-hosted
1515
permissions:
1616
contents: write
1717
pull-requests: write

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# ZenScriptSupport Changelog
44

55
## [Unreleased]
6-
### Added
7-
86
### Changed
9-
10-
### Removed
7+
* Use correct vendor
8+
* Lowered supported Platform Version
9+
* Use correct Semantic Versioning
1110

1211
### Fixed
12+
* CHANGELOG generation
1313

1414
## [0.0.1-alpha.3] - 2022-07-24
1515
### Changed

README.md

Lines changed: 29 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,35 @@
2222
<!-- Plugin description -->
2323
#### This Plugin provides Support for ZenScript
2424

25-
##### Currently implemented Features:
26-
- [ ] Parsing
27-
- [ ] Syntax Highlighting
28-
- [ ] Code Completion
29-
- [ ] Referencing
30-
- [ ] Usage Finder
31-
- [ ] Folding
32-
- [ ] Structure View
33-
- [ ] Structure Aware Navigation Bar
34-
- [ ] Formatter
35-
- [ ] Code Style Settings
36-
- [ ] Commenter
37-
- [ ] Quick Fix
38-
39-
##### Supported Minecraft Versions:
40-
- [ ] 1.12
41-
- [ ] 1.14
42-
- [ ] 1.15
43-
- [ ] 1.16
44-
- [ ] 1.17
45-
- [ ] 1.18
25+
##### Currently implemented features:
26+
* Nothing so far
27+
28+
##### Features to come:
29+
* Parsing
30+
* Syntax Highlighting
31+
* Code Completion
32+
* Referencing
33+
* Usage Finder
34+
* Folding
35+
* Structure View
36+
* Structure Aware Navigation Bar
37+
* Formatter
38+
* Code Style Settings
39+
* Commenter
40+
* Quick Fix
41+
42+
##### Currently supported Minecraft versions:
43+
* Not a single one
44+
45+
##### Minecraft versions to be supported:
46+
* 1.12
47+
* 1.14
48+
* 1.15
49+
* 1.16
50+
* 1.17
51+
* 1.18
52+
53+
######
4654
<!-- Plugin description end -->
4755

4856
[JetBrains Marketplace]: https://img.shields.io/static/v1?label=&message=JetBrains+Marketplace&color=orange&style=for-the-badge

build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ changelog {
4747
version.set(properties("pluginVersion"))
4848
header.set(provider { "[${version.get()}] - ${date("yyyy-MM-dd")}" })
4949
itemPrefix.set("*")
50-
keepUnreleasedSection.set(true)
51-
unreleasedTerm.set("[Unreleased]")
52-
groups.set(listOf("Added", "Changed", "Removed", "Fixed"))
50+
groups.set(emptyList())
5351
}
5452

5553
// Configure Gradle Qodana Plugin - read more: https://github.com/JetBrains/gradle-qodana-plugin

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
pluginGroup = net.eratiem.zenscriptsupport
55
pluginName = ZenScriptSupport
66
# SemVer format -> https://semver.org
7-
pluginVersion = 0.0.1-alpha.3
7+
pluginVersion = 1.0.0-alpha
88

99
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
# for insight into build numbers and IntelliJ Platform versions.
11-
pluginSinceBuild = 222
11+
pluginSinceBuild = 201.*
1212
pluginUntilBuild = 222.*
1313

1414
# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties

qodana.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<idea-plugin>
33
<id>net.eratiem.zenscriptsupport</id>
44
<name>ZenScriptSupport</name>
5-
<vendor>Motzkiste</vendor>
5+
<vendor>EraTiem-Network</vendor>
66

77
<depends>com.intellij.modules.platform</depends>
88

0 commit comments

Comments
 (0)