Skip to content
Snippets Groups Projects
Commit ca46b732 authored by samuel's avatar samuel
Browse files

Version 3.0.3

parent ad8292bc
No related branches found
Tags release-3.0.2
No related merge requests found
Pipeline #14011 passed
......@@ -104,5 +104,5 @@ release:
- if: $CI_COMMIT_TAG
script:
- |
release-cli create --name "Release ${PACKAGE_TAG}" --tag-name ${PACKAGE_VERSION} \
release-cli create --name "Release ${PACKAGE_TAG}" --tag-name ${PACKAGE_TAG} \
--assets-link "{\"name\":\"${PACKAGE_BINARY}\",\"url\":\"${PACKAGE_REGISTRY_URL}/${PACKAGE_BINARY}\"}"
version 3.0.3 (2024-12-11)
- Update spanish translation (victorhck)
- Sync GitLab tags
version 3.0.2 (2024-12-10)
- As of Plasma6, translations no longer need to be manually installed. Updated translation documentation to reflect this.
- Fixed bug where CI build systems create extra files.
......
# Luna 3
-----------
Description
-----------
......@@ -14,7 +17,7 @@ which is a port to Plasma 5 of Luna QML 1.4 (https://store.kde.org/p/1002036/)
Installation
------------
#### A. Command line, installs to `~/local/share/plasma/plasmoids`.
#### A. Command line, installs to `~/local/share/plasma/plasmoids`
This works the same way as loading a new widget from "Add Widgets..."
Install:
......
......@@ -73,7 +73,7 @@
"Name[uk]": "Луна 3",
"Name[x-test]": "xxLuna 3xx",
"Name[zh_CN]": "月相",
"Version": "3.0.2",
"Version": "3.0.3",
"Website": "http://userbase.kde.org/Plasma"
},
"X-Plasma-API-Minimum-Version": "6.0",
......
#!/bin/bash
METADATA="package/metadata.desktop"
APPNAME=$(grep "X-KDE-PluginInfo-Name" $METADATA | sed 's/.*=//')
METADATA="package/metadata.json"
APPNAME=$(grep '"Id"' $METADATA | sed -E 's/^\s+".*": "(.*)",/\1/')
_basename=$(basename "$0")
if [[ $1 == --install ]]; then
_SHORT_OPTIONS="h?i"
_LONG_OPTIONS="help,install"
_install=0
show_help() { echo "Usage: ${_basename} [OPTIONS]...
Upgrade plasmoid.
Options:
-h, --help display this help text and exit
-i, --install install instead of upgrading
"; }
#canonicalize options
_args=$(getopt \
--longoptions $_LONG_OPTIONS \
--name ${_basename} \
--options $_SHORT_OPTIONS \
-- "$@"
)
if [ $? != 0 ] ; then show_help ; exit 1 ;
else set -- $_args ; fi
# Transform long options to short ones
for arg in "$@"; do
shift
case "$arg" in
'--install') set -- "$@" '-i' ;;
'--help') set -- "$@" '-h' ;;
*) set -- "$@" "$arg" ;;
esac
done
while getopts $_SHORT_OPTIONS opt; do
case "$opt" in
h | ? )
show_help
exit 0
;;
i )
_install=1
;;
esac
done
if [ $_install = 1 ]; then
plasmapkg2 --install package
else
plasmapkg2 --upgrade package
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment