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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: reflection.flatpak
manifest-path: cx.modal.reflection.json
manifest-path: cx.modal.Reflection.json
cache-key: flatpak-builder-${{ github.sha }}
arch: ${{ matrix.variant.arch }}
run-tests: true
Expand All @@ -36,7 +36,7 @@ jobs:
# the zip artifact, extract it, install the flatpak and run it.
# unzip reflection-x86_64.zip
# flatpak --user install reflection.flatpak
# flatpak run cx.modal.reflection
# flatpak run cx.modal.Reflection

macos:
if: false # This disable macos for now.
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
<key>CFBundleExecutable</key>
<string>reflection</string>
<key>CFBundleIdentifier</key>
<string>cx.modal.reflection</string>
<string>cx.modal.Reflection</string>
<key>CFBundleName</key>
<string>Reflection</string>
<key>CFBundlePackageType</key>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p align="center"><img src="reflection-app/data/icons/cx.modal.reflection.svg"></p>
<p align="center"><img src="reflection-app/data/icons/cx.modal.Reflection.svg"></p>
<h1 align="center">Reflection</h1>
<p align="center">Collaboratively take meeting notes, even when there's no internet</p>

Expand Down
2 changes: 1 addition & 1 deletion cx.modal.reflection.json → cx.modal.Reflection.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"id" : "cx.modal.reflection",
"id" : "cx.modal.Reflection",
"runtime" : "org.gnome.Platform",
"runtime-version" : "49",
"sdk" : "org.gnome.Sdk",
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ project('reflection', 'rust',
i18n = import('i18n')
gnome = import('gnome')

application_id = 'cx.modal.reflection'
application_id = 'cx.modal.Reflection'

pkgdatadir = get_option('prefix') / get_option('datadir') / meson.project_name()
iconsdir = get_option('datadir') / 'icons'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[Desktop Entry]
Name=reflection
Exec=reflection
Icon=cx.modal.reflection
Icon=cx.modal.Reflection
Terminal=false
Type=Application
Categories=Utility;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="reflection">
<schema id="cx.modal.reflection" path="/cx/modal/reflection/">
<schema id="cx.modal.Reflection" path="/cx/modal/Reflection/">
</schema>
</schemalist>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>cx.modal.reflection</id>
<id>cx.modal.Reflection</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-or-later</project_license>

Expand Down Expand Up @@ -43,7 +43,7 @@
<translation type="gettext">reflection</translation>
<!-- All graphical applications having a desktop file must have this tag in the MetaInfo.
If this is present, appstreamcli compose will pull icons, keywords and categories from the desktop file. -->
<launchable type="desktop-id">cx.modal.reflection.desktop</launchable>
<launchable type="desktop-id">cx.modal.Reflection.desktop</launchable>
<!-- Use the OARS website (https://hughsie.github.io/oars/generate.html) to generate these and make sure to use oars-1.1 -->
<content_rating type="oars-1.1">
<content_attribute id="social-chat">intense</content_attribute>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[D-BUS Service]
Name=cx.modal.reflection
Name=cx.modal.Reflection
Exec=@bindir@/reflection --gapplication-service
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 7 additions & 7 deletions reflection-app/data/meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
desktop_file = i18n.merge_file(
input: 'cx.modal.reflection.desktop.in',
output: 'cx.modal.reflection.desktop',
input: 'cx.modal.Reflection.desktop.in',
output: 'cx.modal.Reflection.desktop',
type: 'desktop',
po_dir: '../po',
install: true,
Expand All @@ -13,8 +13,8 @@ if desktop_utils.found()
endif

appstream_file = i18n.merge_file(
input: 'cx.modal.reflection.metainfo.xml.in',
output: 'cx.modal.reflection.metainfo.xml',
input: 'cx.modal.Reflection.metainfo.xml.in',
output: 'cx.modal.Reflection.metainfo.xml',
po_dir: '../po',
install: true,
install_dir: get_option('datadir') / 'metainfo'
Expand All @@ -24,7 +24,7 @@ appstreamcli = find_program('appstreamcli', required: false, disabler: true)
test('Validate appstream file', appstreamcli,
args: ['validate', '--no-net', '--explain', appstream_file])

install_data('cx.modal.reflection.gschema.xml',
install_data('cx.modal.Reflection.gschema.xml',
install_dir: get_option('datadir') / 'glib-2.0' / 'schemas'
)

Expand All @@ -37,8 +37,8 @@ test('Validate schema file',
service_conf = configuration_data()
service_conf.set('bindir', get_option('prefix') / get_option('bindir'))
configure_file(
input: 'cx.modal.reflection.service.in',
output: 'cx.modal.reflection.service',
input: 'cx.modal.Reflection.service.in',
output: 'cx.modal.Reflection.service',
configuration: service_conf,
install_dir: get_option('datadir') / 'dbus-1' / 'services'
)
Expand Down
2 changes: 1 addition & 1 deletion reflection-app/data/resources/resources.gresource.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/cx/modal/reflection">
<gresource prefix="/cx/modal/Reflection">
<file preprocess="xml-stripblanks">icons/scalable/actions/about-symbolic.svg</file>
<file preprocess="xml-stripblanks">icons/scalable/actions/bluetooth-symbolic.svg</file>
<file preprocess="xml-stripblanks">icons/scalable/status/folder-symbolic.svg</file>
Expand Down
6 changes: 3 additions & 3 deletions reflection-app/po/POTFILES.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# List of source files containing translatable strings.
# Please keep this file sorted alphabetically.
data/cx.modal.reflection.desktop.in
data/cx.modal.reflection.metainfo.xml.in
data/cx.modal.reflection.gschema.xml
data/cx.modal.Reflection.desktop.in
data/cx.modal.Reflection.metainfo.xml.in
data/cx.modal.Reflection.gschema.xml
src/application.rs
src/components/zoom_level_selector.blp
src/connection_popover/author_list.rs
Expand Down
2 changes: 1 addition & 1 deletion reflection-app/src/landing_view/landing_view.blp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ template $ReflectionLandingView: Adw.NavigationPage {
StackPage {
name: "no-documents";
child: Adw.StatusPage no-document-page {
icon-name: "cx.modal.reflection-symbolic";
icon-name: "cx.modal.Reflection-symbolic";
title: _("Take Notes, Together");
child: Box {
orientation: vertical;
Expand Down
2 changes: 1 addition & 1 deletion reflection-app/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ fn main() -> glib::ExitCode {
// Create a new GtkApplication. The application manages our main loop,
// application windows, integration with the window manager/compositor, and
// desktop features such as file opening and single-instance applications.
let app = ReflectionApplication::new("cx.modal.reflection", &gio::ApplicationFlags::empty());
let app = ReflectionApplication::new("cx.modal.Reflection", &gio::ApplicationFlags::empty());

info!("Reflection ({})", APP_ID);
info!("Version: {}", VERSION);
Expand Down
2 changes: 1 addition & 1 deletion reflection-app/src/ui-resources.gresource.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/cx/modal/reflection">
<gresource prefix="/cx/modal/Reflection">
<file compressed="true" preprocess="xml-stripblanks">shortcuts-dialog.ui</file>
<file compressed="true" alias="style.css">style.css</file>
</gresource>
Expand Down
Loading