3 Commits

Author SHA1 Message Date
60d279a01f chore: typo 2025-12-07 02:20:56 +03:00
c61337de0a bump ver 2025-12-07 02:17:28 +03:00
5a0e52fb9b chore: added desktop file 2025-12-07 02:12:05 +03:00
5 changed files with 25 additions and 4 deletions

4
.gitignore vendored
View File

@@ -14,6 +14,10 @@ out
/subprojects/libpng-* /subprojects/libpng-*
/subprojects/packagecache /subprojects/packagecache
*.log
*tar.zst
*tar.gz
*.swp *.swp
*.bak *.bak
*.tmp *.tmp

View File

@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.25) cmake_minimum_required(VERSION 3.25)
project(clrsync VERSION 0.1.0 LANGUAGES CXX) project(clrsync VERSION 0.1.2 LANGUAGES CXX)
include(GNUInstallDirs) include(GNUInstallDirs)
@@ -140,4 +140,10 @@ install(DIRECTORY example_config/templates
install(DIRECTORY example_config/palettes install(DIRECTORY example_config/palettes
DESTINATION ${CMAKE_INSTALL_DATADIR}/clrsync DESTINATION ${CMAKE_INSTALL_DATADIR}/clrsync
FILES_MATCHING PATTERN "*.toml" FILES_MATCHING PATTERN "*.toml"
) )
if(UNIX AND NOT APPLE)
install(FILES resources/clrsync.desktop
DESTINATION ${CMAKE_INSTALL_DATADIR}/applications
)
endif()

View File

@@ -1,6 +1,6 @@
# Maintainer: Daniel Dada <dan@binarygoose.dev> # Maintainer: Daniel Dada <dan@binarygoose.dev>
pkgname=clrsync pkgname=clrsync
pkgver=0.1.0 pkgver=0.1.2
pkgrel=1 pkgrel=1
pkgdesc="Color scheme manager" pkgdesc="Color scheme manager"
arch=('x86_64') arch=('x86_64')

11
resources/clrsync.desktop Normal file
View 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

View File

@@ -9,7 +9,7 @@ namespace clrsync::core
constexpr uint8_t VERSION_MAJOR = 0; constexpr uint8_t VERSION_MAJOR = 0;
constexpr uint8_t VERSION_MINOR = 1; constexpr uint8_t VERSION_MINOR = 1;
constexpr uint8_t VERSION_PATCH = 0; constexpr uint8_t VERSION_PATCH = 2;
const std::string version_string(); const std::string version_string();
} // namespace clrsync::core } // namespace clrsync::core