Compare commits

...

3 Commits

Author SHA1 Message Date
JEEVITHA KANNAN K S
e2eed9e83c
Merge 6b0f310ef2 into 696110eae5 2024-10-26 07:32:43 +05:30
Adam Perkowski
696110eae5
refact(release): better categories (#876) 2024-10-25 15:44:41 -05:00
JEEVITHA KANNAN K S
6b0f310ef2
Fix common script paths 2024-10-01 12:20:09 +05:30
9 changed files with 19 additions and 16 deletions

19
.github/release.yml vendored
View File

@ -1,20 +1,23 @@
changelog: changelog:
categories: categories:
- title: '🚀 Features' - title: '🚀 Features'
labels: label: 'enhancement'
- 'feature'
- 'enhancement'
- title: '🐛 Bug Fixes' - title: '🐛 Bug Fixes'
labels: label: 'bug'
- 'fix' - title: '⚙️ Refactoring'
- 'bugfix' label: 'refactor'
- 'bug' - title: '🧩 UI/UX'
label: 'UI/UX'
- title: '📚 Documentation' - title: '📚 Documentation'
label: 'documentation' label: 'documentation'
- title: '🔒 Security' - title: '🔒 Security'
label: 'security' label: 'security'
- title: '🧰 GitHub Actions' - title: '🧰 GitHub Actions'
label: 'github actions' label: 'github_actions'
- title: '🦀 Rust'
label: 'rust'
- title: '📃 Scripting'
label: 'script'
exclude: exclude:
labels: labels:
- 'skip-changelog' - 'skip-changelog'

View File

@ -1,6 +1,6 @@
#!/bin/sh -e #!/bin/sh -e
. ../common-script.sh . ../../common-script.sh
installFreeOffice() { installFreeOffice() {
if ! command_exists softmaker-freeoffice-2024 freeoffice softmaker; then if ! command_exists softmaker-freeoffice-2024 freeoffice softmaker; then

View File

@ -1,6 +1,6 @@
#!/bin/sh -e #!/bin/sh -e
. ../common-script.sh . ../../common-script.sh
installLibreOffice() { installLibreOffice() {
if ! command_exists libreoffice; then if ! command_exists libreoffice; then

View File

@ -1,6 +1,6 @@
#!/bin/sh -e #!/bin/sh -e
. ../common-script.sh . ../../common-script.sh
installOnlyOffice() { installOnlyOffice() {
if ! command_exists onlyoffice-desktopeditors; then if ! command_exists onlyoffice-desktopeditors; then

View File

@ -1,6 +1,6 @@
#!/bin/sh -e #!/bin/sh -e
. ../common-script.sh . ../../common-script.sh
installWpsOffice() { installWpsOffice() {
if ! command_exists com.wps.Office; then if ! command_exists com.wps.Office; then

View File

@ -1,6 +1,6 @@
#!/bin/sh -e #!/bin/sh -e
. ../common-script.sh . ../../common-script.sh
installEvince() { installEvince() {
if ! command_exists evince; then if ! command_exists evince; then

View File

@ -1,6 +1,6 @@
#!/bin/sh -e #!/bin/sh -e
. ../common-script.sh . ../../common-script.sh
installOkular() { installOkular() {
if ! command_exists okular; then if ! command_exists okular; then

View File

@ -1,6 +1,6 @@
#!/bin/sh -e #!/bin/sh -e
. ../common-script.sh . ../../common-script.sh
installPdfstudio() { installPdfstudio() {
if ! command_exists pdfstudio2024; then if ! command_exists pdfstudio2024; then

View File

@ -1,6 +1,6 @@
#!/bin/sh -e #!/bin/sh -e
. ../common-script.sh . ../../common-script.sh
installPdfstudioviewer() { installPdfstudioviewer() {
if ! command_exists pdfstudioviewer2024; then if ! command_exists pdfstudioviewer2024; then