mirror of
https://github.com/obsqrbtz/clrsync.git
synced 2026-04-09 12:37:41 +03:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c61337de0a | |||
| 5a0e52fb9b |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -14,6 +14,10 @@ out
|
|||||||
/subprojects/libpng-*
|
/subprojects/libpng-*
|
||||||
/subprojects/packagecache
|
/subprojects/packagecache
|
||||||
|
|
||||||
|
*.log
|
||||||
|
*tar.zst
|
||||||
|
*tar.gz
|
||||||
|
|
||||||
*.swp
|
*.swp
|
||||||
*.bak
|
*.bak
|
||||||
*.tmp
|
*.tmp
|
||||||
|
|||||||
@@ -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.1 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/colorsync.desktop
|
||||||
|
DESTINATION ${CMAKE_INSTALL_DATADIR}/applications
|
||||||
|
)
|
||||||
|
endif()
|
||||||
2
PKGBUILD
2
PKGBUILD
@@ -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.1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Color scheme manager"
|
pkgdesc="Color scheme manager"
|
||||||
arch=('x86_64')
|
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_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 = 1;
|
||||||
|
|
||||||
const std::string version_string();
|
const std::string version_string();
|
||||||
} // namespace clrsync::core
|
} // namespace clrsync::core
|
||||||
|
|||||||
Reference in New Issue
Block a user