mirror of
https://github.com/artizirk/wdisplays.git
synced 2025-09-07 07:40:58 +03:00
Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
1a32d8bbe2 | ||
|
64aa4a551d | ||
|
052c492040 | ||
|
0683283fa5 | ||
|
919726a2e5 | ||
|
aefde05389 | ||
|
c15e5870d9 | ||
|
73f3cc2dd2 | ||
|
9f8508b31e | ||
|
f4cf935e49 | ||
|
59edbbd155 |
4
.clang-format
Normal file
4
.clang-format
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
IndentWidth: '2'
|
||||
|
||||
...
|
14
.editorconfig
Normal file
14
.editorconfig
Normal file
@@ -0,0 +1,14 @@
|
||||
# EditorConfig configuration
|
||||
# http://editorconfig.org
|
||||
|
||||
# Top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
# UTF-8 charset, set indent to spaces with width of four,
|
||||
# with no trailing whitespaces and a newline ending every file.
|
||||
[*]
|
||||
charset = utf-8
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
||||
/build/
|
||||
*.user
|
||||
|
58
CHANGELOG.md
Normal file
58
CHANGELOG.md
Normal file
@@ -0,0 +1,58 @@
|
||||
# Changelog
|
||||
|
||||
The format is based on [Keep a Changelog][1].
|
||||
|
||||
This project tries to adhere to [Semantic Versioning][2].
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.1.1] - 2023-07-01
|
||||
|
||||
### Added
|
||||
|
||||
Added QtCreator files to .gitignore (redtide)
|
||||
.editorconfig and .clang-format (redtide)
|
||||
this file (redtide)
|
||||
|
||||
### Changed
|
||||
|
||||
Install icon to the app_id location (somini)
|
||||
Move the output name overlay to the bottom left (WhyNotHugo)
|
||||
Bump to current development version, use semver (redtide)
|
||||
Updated desktop file (redtide)
|
||||
|
||||
### Fixed
|
||||
|
||||
Fixed license SPDX ID in main meson.build
|
||||
|
||||
## [1.1] - 2023-04-18
|
||||
|
||||
### Added
|
||||
|
||||
Added categories to the program shortcut (IntinteDAO)
|
||||
|
||||
### Changed
|
||||
|
||||
Add package links (Jason Francis)
|
||||
Backport GTK4 changes (Jason Francis)
|
||||
Create WdHeadForm class (Jason Francis)
|
||||
Update README (Jason Francis)
|
||||
Use correct versions when binding globals (Simon Ser)
|
||||
|
||||
## [v1.0] - 2020-05-09
|
||||
|
||||
First release after <https://github.com/MichaelAquilina/wdisplays> fork
|
||||
(backup of the original, deleted repository at <https://github.com/cyclopsian/wdisplays>)
|
||||
|
||||
### Changed
|
||||
|
||||
Update application ID and readme (Jason Francis)
|
||||
|
||||
|
||||
[1]: https://keepachangelog.com/en/1.0.0/
|
||||
[2]: https://semver.org/spec/v2.0.0.html
|
||||
|
||||
[Unreleased]: https://github.com/artizirk/wdisplays/compare/1.1.1...HEAD
|
||||
[1.1.1]: https://github.com/artizirk/wdisplays/compare/1.1...1.1.1
|
||||
[1.1]: https://github.com/artizirk/wdisplays/compare/1.0...1.1
|
||||
[1.0]: https://github.com/artizirk/wdisplays/releases/tag/1.0
|
@@ -1,7 +1,10 @@
|
||||
# SPDX-FileCopyrightText: 2020 Jason Francis <jason@cycles.network>
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
project('network.cycles.wdisplays', 'c', license: 'MIT', version: '1.0')
|
||||
project('network.cycles.wdisplays', 'c',
|
||||
license: 'GPL-3.0-or-later',
|
||||
version: '1.1.1'
|
||||
)
|
||||
|
||||
conf = configuration_data({
|
||||
'app_id': meson.project_name(),
|
||||
|
@@ -36,9 +36,12 @@ if scour.found()
|
||||
'@INPUT@', '@OUTPUT@'],
|
||||
install: true,
|
||||
install_dir: icondir)
|
||||
else
|
||||
install_data(icon, install_dir: icondir)
|
||||
endif
|
||||
else
|
||||
install_data(icon,
|
||||
rename: '@0@.svg'.format(meson.project_name()),
|
||||
install_dir: icondir
|
||||
)
|
||||
endif
|
||||
|
||||
install_data(
|
||||
configure_file(input: 'wdisplays.desktop.in',
|
||||
|
@@ -1,8 +1,12 @@
|
||||
[Desktop Entry]
|
||||
Version=@version@
|
||||
Type=Application
|
||||
Name=wdisplays
|
||||
Comment=Wlroots display configuration
|
||||
Categories=GTK;Settings;DesktopSettings;
|
||||
Exec=wdisplays
|
||||
Icon=@app_id@
|
||||
|
||||
Name=Displays
|
||||
GenericName=Displays configuration
|
||||
Comment=wlroots displays configuration
|
||||
Name[it]=Schermi
|
||||
GenericName[it]=Impostazioni degli schermi
|
||||
Comment[it]=Impostazioni degli schermi per wlroots
|
||||
|
@@ -132,7 +132,7 @@ void window_map(GtkWidget *widget, gpointer data) {
|
||||
&layer_surface_listener, output);
|
||||
|
||||
zwlr_layer_surface_v1_set_anchor(output->overlay_layer_surface,
|
||||
ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP |
|
||||
ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM |
|
||||
ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT);
|
||||
|
||||
resize(output);
|
||||
|
Reference in New Issue
Block a user