Skip to content

Commit

Permalink
Bump version to 2.0
Browse files Browse the repository at this point in the history
We can also create an appimage for the release with:

# Needed to link against an old libc
nix-shell -p glibc -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/136a26be29a9daa04e5f15ee7694e9e92e5a028c.tar.gz
# Create the appimage
QML_SOURCES_PATHS="$PWD/src/qml" QMAKE=/usr/bin/qmake6 ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin qt --output appimage

ref: https://github.com/linuxdeploy/linuxdeploy
ref: https://docs.appimage.org/packaging-guide/from-source/native-binaries.html#using-cmake-and-make-install
  • Loading branch information
vimpostor committed Aug 4, 2023
1 parent 5250fb5 commit f08db98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.21)
cmake_policy(SET CMP0048 NEW)
project(blobdrop VERSION 1.0 DESCRIPTION "Drag and drop files directly out of the terminal")
project(blobdrop VERSION 2.0 DESCRIPTION "Drag and drop files directly out of the terminal")

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

blobdrop = pkgs.gcc13Stdenv.mkDerivation {
pname = "blobdrop";
version = "1.0";
version = "2.0";

src = ./.;

Expand Down

0 comments on commit f08db98

Please sign in to comment.