mirror of
https://github.com/outbackdingo/hyprcosmic.git
synced 2026-08-25 14:53:21 +00:00
Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5dcb211692 | ||
|
|
e13e24b54e | ||
|
|
dafb7bb1fa |
+1
-1
Submodule cosmic-applets updated: 37b1a877a6...d4f62852f3
+1
-1
Submodule cosmic-applibrary updated: 6806d2c104...22926ea0ac
+1
-1
Submodule cosmic-bg updated: f431b28e78...0b8ecbd4b4
+1
-1
Submodule cosmic-comp updated: b5e8c585bf...1dfc948f1e
+1
-1
Submodule cosmic-edit updated: f1923f5b99...6dbc5d5ef7
+1
-1
Submodule cosmic-files updated: 3ff39c01ea...3e932877a9
+1
-1
Submodule cosmic-greeter updated: f13961274a...a5dcdb42c4
+1
-1
Submodule cosmic-idle updated: 983d34ad96...6d3dbedd50
+1
-1
Submodule cosmic-initial-setup updated: 41c22061a4...9f2a68d2cc
+1
-1
Submodule cosmic-launcher updated: c30a9f7ba2...2941ad16b6
+1
-1
Submodule cosmic-notifications updated: 23e39eca29...970b7672ca
+1
-1
Submodule cosmic-osd updated: adb6227dcd...5252e8e94e
+1
-1
Submodule cosmic-player updated: 59a8c49515...9d5654cd8e
+1
-1
Submodule cosmic-screenshot updated: 01af29d7da...b550b45da3
+1
-1
Submodule cosmic-session updated: 957fd526cb...3506cfc404
+1
-1
Submodule cosmic-settings updated: a679d056b9...eec172cdae
+1
-1
Submodule cosmic-store updated: 4cd64df68f...838aa844dc
+1
-1
Submodule cosmic-term updated: 42e4b28516...cdeaeeddc9
+1
-1
Submodule cosmic-workspaces-epoch updated: 15ce5267af...e50554cdff
+7
-6
@@ -2,14 +2,15 @@
|
||||
|
||||
set -e
|
||||
|
||||
TAG="$1"
|
||||
|
||||
if [ -z "$TAG" ]
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
echo "$0 [tag]" >&2
|
||||
echo "$0 [epoch version]" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
VERSION="$1"
|
||||
TAG="epoch-$1"
|
||||
|
||||
echo "Do you want to tag the current state of cosmic-epoch with the tag $TAG? (y/N)"
|
||||
read answer
|
||||
if [ "$answer" != "y" ]
|
||||
@@ -22,8 +23,8 @@ set -x
|
||||
|
||||
git fetch --recurse-submodules
|
||||
|
||||
git tag --force "$TAG"
|
||||
git submodule foreach git tag --force "$TAG"
|
||||
git tag --force --annotate "$TAG" --message "Epoch ${VERSION}"
|
||||
git submodule foreach git tag --force --annotate "$TAG" --message "Epoch ${VERSION}"
|
||||
|
||||
git push --force origin tag "$TAG"
|
||||
git submodule foreach git push --force origin tag "$TAG"
|
||||
|
||||
Executable
+40
@@ -0,0 +1,40 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
# This should be the _next_ epoch version
|
||||
version=1.0.4
|
||||
subject="Epoch ${version} version update"
|
||||
description="Generated by cosmic-epoch scripts/version-update.sh"
|
||||
|
||||
repos=(
|
||||
cosmic-edit
|
||||
cosmic-files
|
||||
cosmic-player
|
||||
cosmic-store
|
||||
cosmic-term
|
||||
)
|
||||
|
||||
for repo in "${repos[@]}"
|
||||
do
|
||||
git submodule update --recursive "${repo}"
|
||||
pushd "${repo}"
|
||||
git fetch origin
|
||||
git checkout -B epoch-update origin/master
|
||||
git reset --hard
|
||||
if [ "$(dpkg-parsechangelog --show-field Version)" != "${version}" ]
|
||||
then
|
||||
dch --newversion "${version}" --distribution noble "${subject}"
|
||||
fi
|
||||
cargo set-version "${version}"
|
||||
cargo update
|
||||
git commit -a -m "${subject}" -m "${description}"
|
||||
git push -f -u origin epoch-update
|
||||
gh pr create \
|
||||
--title "${subject}" \
|
||||
--body "${description}" \
|
||||
--assignee "@me" \
|
||||
--reviewer "pop-os/engineering" \
|
||||
--reviewer "pop-os/quality-assurance"
|
||||
popd
|
||||
done
|
||||
Submodule xdg-desktop-portal-cosmic updated: e80eb7f112...2ab83d5053
Reference in New Issue
Block a user