Skip to content

Commit

Permalink
release: Prepare release of v2.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bugwelle committed Feb 5, 2023
1 parent da9b2ab commit 960303a
Show file tree
Hide file tree
Showing 12 changed files with 32 additions and 29 deletions.
4 changes: 2 additions & 2 deletions .ci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ rm -rf build
./.ci/linux/package_linux_appimage_in_docker.sh

# win
./.ci/win/build_windows_release_release_qt6_in_docker.sh
./.ci/win/build_windows_release_qt6_in_docker.sh
./.ci/win/package_windows_qt6_in_docker.sh
./.ci/win/build_windows_release_release_qt5_in_docker.sh
./.ci/win/build_windows_release_qt5_in_docker.sh
./.ci/win/package_windows_qt5_in_docker.sh

# Gather Packages
Expand Down
4 changes: 0 additions & 4 deletions .ci/jenkins/CoverityScan.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@ pipeline {
export PATH="$(pwd)/${COVERITY_DIR}/bin/:${PATH}"
pwd
ls -la
ls -la "${COVERITY_DIR}"
cd MediaElch
git submodule update --init
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**MediaElch Version:**
- [ ] 2.8.19-dev (nightly)
- [ ] 2.8.18 stable
- [ ] 2.10.1-dev (nightly)
- [ ] 2.10.0 stable
<!-- older stable versions are not supported; please update -->

**Operating System:**
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/scraper-does-not-work.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ assignees: ''
Add a list of information that is not loaded correctly.

**MediaElch Version:**
- [ ] 2.8.19-dev (nightly)
- [ ] 2.8.18 stable
- [ ] 2.10.1-dev (nightly)
- [ ] 2.10.0 stable

**Operating System:**
- [ ] Windows
Expand Down
12 changes: 4 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Changelog

## 2.8.19 - *tbd*
## 2.10.0 - Benzar (2023-01-22)

### Notes

- There are now different MediaElch releases for Windows 7/8 and Windows 10/11.
The Windows 10 or later releases use Qt6, which fix scaling issuse on 4k display
The Windows 10 or later releases use Qt6, which fix scaling issues on 4k display
with scaling >100% (#429)

### Bugfixes
Expand Down Expand Up @@ -46,14 +46,10 @@

### Added

- Dark Mode: MediaElch has gained an experimental dark mode for its _main window_ (#761).
- Dark Mode: MediaElch has gained an experimental dark mode for its *main window* (#761).
It can only be set through MediaElch's settings. On macOS, the theme is automatically
detected if set to "auto".
- The TV show search dialog has gained a preview

### Removed

- *tbd*
- The TV show search dialog has gained a preview (#1513)

### Internal Improvements and Changes

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.13.0 FATAL_ERROR)

project(
mediaelch
VERSION 2.8.19
VERSION 2.10.0
DESCRIPTION "Media Manager for Kodi"
HOMEPAGE_URL "https://mediaelch.github.io/"
)
Expand Down
6 changes: 3 additions & 3 deletions MediaElch.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleGetInfoString</key>
<string>2.8.19</string>
<string>2.10.0</string>
<key>CFBundleVersion</key>
<string>2.8.19</string>
<string>2.10.0</string>
<key>CFBundleShortVersionString</key>
<string>2.8.19</string>
<string>2.10.0</string>
<key>CFBundleExecutable</key>
<string>MediaElch</string>
<key>CFBundleHelpBookFolder</key>
Expand Down
6 changes: 3 additions & 3 deletions Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ namespace mediaelch {
namespace constants {

constexpr char AppName[] = "MediaElch";
constexpr char AppVersionStr[] = "2.8.19"; // major.minor.patch
constexpr char AppVersionFullStr[] = "2.8.19-dev"; // major.minor.patch-identifier
constexpr char VersionName[] = "Coridian";
constexpr char AppVersionStr[] = "2.10.0"; // major.minor.patch
constexpr char AppVersionFullStr[] = "2.10.0"; // major.minor.patch-identifier
constexpr char VersionName[] = "Benzar";
constexpr char OrganizationName[] = "kvibes";

#ifdef QT_NO_DEBUG
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
mediaelch (2.10.0-1) bionic; urgency=medium

* next release

-- Andre Meyering <[email protected]> Sun, 22 Jan 2023 12:30:00 +0100

mediaelch (2.8.18-1) bionic; urgency=medium

* next release
Expand Down
6 changes: 3 additions & 3 deletions docs/admin/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ But better check all commit messages since the last version tag:

```sh
# Print all commits between the git tag v2.8.18 and the current master branch
git log --oneline v2.8.18..master
git log --oneline v2.10.0..master
# Count the number of commits since the last version
git log --oneline v2.8.18..master | wc -l
git log --oneline v2.10.0..master | wc -l
```


Expand Down Expand Up @@ -88,7 +88,7 @@ add a Git tag (see next section), it includes the latest documentation state.
1. Commit your changes (MediaElch version and changelogs).
2. Add a version tag and push your changes

- `git tag -a v2.8.18 -m "MediaElch Version 2.8.17"`
- `git tag -a v2.10.0 -m "MediaElch Version 2.10.0"`
- `git push origin master` (or better: Create a pull request)
- `git push --tags`
- `git checkout release && git merge master && git push origin release`
Expand Down
5 changes: 5 additions & 0 deletions obs/MediaElch.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Sun Jan 22 12:30:00 UTC 2023 - Andre Meyering <[email protected]>

- Update to MediaElch v2.10.0

-------------------------------------------------------------------
Fri Oct 28 12:30:00 UTC 2022 - Andre Meyering <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion obs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ osc commit
```sh
rm MediaElch-*.tar.gz

export ME_VERSION=2.8.18
export ME_VERSION=2.10.0
# Clone latest version. Shallow clone is enough.
git clone --depth=1 --recursive https://github.com/Komet/MediaElch.git
# Exclude .git, documentation and build folder.
Expand Down

0 comments on commit 960303a

Please sign in to comment.