mirror of
https://github.com/obsqrbtz/clrsync.git
synced 2026-04-09 12:37:41 +03:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 60d279a01f | |||
| c61337de0a | |||
| 5a0e52fb9b |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -14,6 +14,10 @@ out
|
||||
/subprojects/libpng-*
|
||||
/subprojects/packagecache
|
||||
|
||||
*.log
|
||||
*tar.zst
|
||||
*tar.gz
|
||||
|
||||
*.swp
|
||||
*.bak
|
||||
*.tmp
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.25)
|
||||
project(clrsync VERSION 0.1.0 LANGUAGES CXX)
|
||||
project(clrsync VERSION 0.1.2 LANGUAGES CXX)
|
||||
|
||||
include(GNUInstallDirs)
|
||||
|
||||
@@ -141,3 +141,9 @@ install(DIRECTORY example_config/palettes
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/clrsync
|
||||
FILES_MATCHING PATTERN "*.toml"
|
||||
)
|
||||
|
||||
if(UNIX AND NOT APPLE)
|
||||
install(FILES resources/clrsync.desktop
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/applications
|
||||
)
|
||||
endif()
|
||||
2
PKGBUILD
2
PKGBUILD
@@ -1,6 +1,6 @@
|
||||
# Maintainer: Daniel Dada <dan@binarygoose.dev>
|
||||
pkgname=clrsync
|
||||
pkgver=0.1.0
|
||||
pkgver=0.1.2
|
||||
pkgrel=1
|
||||
pkgdesc="Color scheme manager"
|
||||
arch=('x86_64')
|
||||
|
||||
11
resources/clrsync.desktop
Normal file
11
resources/clrsync.desktop
Normal file
@@ -0,0 +1,11 @@
|
||||
[Desktop Entry]
|
||||
Name=clrsync
|
||||
GenericName=Color Scheme Manager
|
||||
Comment=Manage and apply color schemes across applications
|
||||
Exec=clrsync_gui
|
||||
Icon=colorsync
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Graphics;Utility;
|
||||
Keywords=color;theme;palette;scheme;
|
||||
StartupNotify=true
|
||||
@@ -9,7 +9,7 @@ namespace clrsync::core
|
||||
|
||||
constexpr uint8_t VERSION_MAJOR = 0;
|
||||
constexpr uint8_t VERSION_MINOR = 1;
|
||||
constexpr uint8_t VERSION_PATCH = 0;
|
||||
constexpr uint8_t VERSION_PATCH = 2;
|
||||
|
||||
const std::string version_string();
|
||||
} // namespace clrsync::core
|
||||
|
||||
Reference in New Issue
Block a user