mirror of
https://github.com/outbackdingo/hyprcosmic.git
synced 2026-08-30 16:19:36 +00:00
Compare commits
8
Commits
epoch-1.0.3
...
version
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d566a8b589 | ||
|
|
f5fa41194e | ||
|
|
f9abdc105d | ||
|
|
dee71b6f25 | ||
|
|
d955da69d4 | ||
|
|
5dcb211692 | ||
|
|
e13e24b54e | ||
|
|
dafb7bb1fa |
@@ -0,0 +1,8 @@
|
|||||||
|
- [ ] I have disclosed use of any AI generated code in my commit messages.
|
||||||
|
- If you are using an LLM, and do not fully understand the changes it is making to the code base, do not create a PR.
|
||||||
|
- In our experience, AI generated code often results in overly complex code that lacks enough context for a proper fix or feature inclusion. This results in considerably longer code reviews. Due to this, AI authored or partially authored PRs may be closed without comment.
|
||||||
|
- [ ] I understand these changes in full and will be able to respond to review comments.
|
||||||
|
- [ ] My change is accurately described in the commit message.
|
||||||
|
- [ ] My contribution is tested and working as described.
|
||||||
|
- [ ] I have read the [Developer Certificate of Origin](https://developercertificate.org/) and certify my contribution under its conditions.
|
||||||
|
|
||||||
+1
-1
Submodule cosmic-applets updated: 37b1a877a6...006cc96b7b
+1
-1
Submodule cosmic-applibrary updated: 6806d2c104...2be09f052e
+1
-1
Submodule cosmic-bg updated: f431b28e78...808a50e383
+1
-1
Submodule cosmic-comp updated: b5e8c585bf...67c08ef692
+1
-1
Submodule cosmic-edit updated: f1923f5b99...46a1a36f82
+1
-1
Submodule cosmic-files updated: 3ff39c01ea...2c363a01e5
+1
-1
Submodule cosmic-greeter updated: f13961274a...c68ee081a5
+1
-1
Submodule cosmic-idle updated: 983d34ad96...6d3dbedd50
+1
-1
Submodule cosmic-initial-setup updated: 41c22061a4...8cabf71f7f
+1
-1
Submodule cosmic-launcher updated: c30a9f7ba2...c14b470966
+1
-1
Submodule cosmic-notifications updated: 23e39eca29...998f173a18
+1
-1
Submodule cosmic-osd updated: adb6227dcd...0418a0ce92
+1
-1
Submodule cosmic-player updated: 59a8c49515...768fc74a42
+1
-1
Submodule cosmic-screenshot updated: 01af29d7da...3180f369ca
+1
-1
Submodule cosmic-session updated: 957fd526cb...7b5fd4de9d
+1
-1
Submodule cosmic-settings updated: a679d056b9...b46a55d423
+1
-1
Submodule cosmic-settings-daemon updated: ef024bfd06...020c4addd7
+1
-1
Submodule cosmic-store updated: 4cd64df68f...a1016c729d
+1
-1
Submodule cosmic-term updated: 42e4b28516...5bcab45c65
+1
-1
Submodule cosmic-workspaces-epoch updated: 15ce5267af...d31c6dbccb
+7
-6
@@ -2,14 +2,15 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
TAG="$1"
|
if [ -z "$1" ]
|
||||||
|
|
||||||
if [ -z "$TAG" ]
|
|
||||||
then
|
then
|
||||||
echo "$0 [tag]" >&2
|
echo "$0 [epoch version]" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
VERSION="$1"
|
||||||
|
TAG="epoch-$1"
|
||||||
|
|
||||||
echo "Do you want to tag the current state of cosmic-epoch with the tag $TAG? (y/N)"
|
echo "Do you want to tag the current state of cosmic-epoch with the tag $TAG? (y/N)"
|
||||||
read answer
|
read answer
|
||||||
if [ "$answer" != "y" ]
|
if [ "$answer" != "y" ]
|
||||||
@@ -22,8 +23,8 @@ set -x
|
|||||||
|
|
||||||
git fetch --recurse-submodules
|
git fetch --recurse-submodules
|
||||||
|
|
||||||
git tag --force "$TAG"
|
git tag --force --annotate "$TAG" --message "Epoch ${VERSION}"
|
||||||
git submodule foreach git tag --force "$TAG"
|
git submodule foreach git tag --force --annotate "$TAG" --message "Epoch ${VERSION}"
|
||||||
|
|
||||||
git push --force origin tag "$TAG"
|
git push --force origin tag "$TAG"
|
||||||
git submodule foreach git push --force origin tag "$TAG"
|
git submodule foreach git push --force origin tag "$TAG"
|
||||||
|
|||||||
Executable
+49
@@ -0,0 +1,49 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# This should be the _next_ epoch version
|
||||||
|
version=1.0.6
|
||||||
|
subject="Epoch ${version} version update"
|
||||||
|
description="Generated by cosmic-epoch scripts/version-update.sh"
|
||||||
|
|
||||||
|
repos=(
|
||||||
|
cosmic-edit
|
||||||
|
cosmic-files
|
||||||
|
cosmic-player
|
||||||
|
cosmic-settings
|
||||||
|
cosmic-settings-daemon
|
||||||
|
cosmic-randr
|
||||||
|
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
|
||||||
|
pr_url="$(gh pr list --head epoch-update --state open --json url --jq '.[].url')"
|
||||||
|
if [ -n "${pr_url}" ]
|
||||||
|
then
|
||||||
|
echo "PR already open: ${pr_url}"
|
||||||
|
else
|
||||||
|
gh pr create \
|
||||||
|
--title "${subject}" \
|
||||||
|
--body "${description}" \
|
||||||
|
--assignee "@me" \
|
||||||
|
--reviewer "pop-os/engineering" \
|
||||||
|
--reviewer "pop-os/quality-assurance"
|
||||||
|
fi
|
||||||
|
popd
|
||||||
|
done
|
||||||
Submodule xdg-desktop-portal-cosmic updated: e80eb7f112...276af0b38c
Reference in New Issue
Block a user