Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You'll need the following dependencies:
* libgeoclue-2-dev
* libgeocode-glib-dev (>= 3.26.3)
* libglib2.0-dev (>= 2.74)
* libgranite-7-dev (>= 7.2.0)
* libgranite-7-dev (>= 7.3.0)
* libgtk-4-dev
* libshumate-dev
* meson (>= 0.57.0)
Expand Down
21 changes: 21 additions & 0 deletions data/Application.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/* Style for Shumate.Point */
map-point {
border: 0.3rem solid @theme_bg_color;
background: @BLUEBERRY_500;
border-radius: 50%;
min-height: 1.25rem;
min-width: 1.25rem;
animation: zoom 5s linear infinite;
}

@keyframes zoom {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
4 changes: 4 additions & 0 deletions data/atlas.gresource.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/com/github/ryonakano/atlas">
<file alias="Application.css">Application.css</file>
</gresource>

<gresource prefix="/com/github/ryonakano/atlas/icons">
<file compressed="true" preprocess="xml-stripblanks" alias="pointer.svg">icons/pointer.svg</file>
</gresource>
Expand Down
4 changes: 2 additions & 2 deletions src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ dependencies = [
dependency('gio-2.0'),
# Version limitation for GLib.ApplicationFlags.DEFAULT_FLAGS
dependency('glib-2.0', version: '>= 2.74'),
# Version limitation for Granite.init()
dependency('granite-7', version: '>= 7.2.0'),
# Version limitation for automatic load of Application.css in Granite.init()
dependency('granite-7', version: '>= 7.3.0'),
dependency('gtk4'),
dependency('libadwaita-1'),
dependency('libgeoclue-2.0'),
Expand Down