Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Codespell workflow and fix some typo #385

Merged
merged 1 commit into from
Mar 7, 2024
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.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ For instance:
TODO:
=====

- Remove custom keybinding code (we handle that in Cinnamon now) - do we want to handle media keys in cinnamon also? Would get around the 'no meda keys while a menu is open' issue.
- Remove custom keybinding code (we handle that in Cinnamon now) - do we want to handle media keys in cinnamon also? Would get around the 'no meta keys while a menu is open' issue.
- Switch to Gnome's keyboard layout (gsettings) handler - basically reverting Ubuntu's patch for this. This will allow us to implement ibus popups directly in Cinnamon
- Look into backgrounds - we should be able to eliminate the background manager in the cinnamon gnome 3.8 compat rollup, and continue to handle backgrounds as we currently do
- Investigate: How to keep gnome-settings-daemon from autostarting. It checks for environment=GNOME... which means Cinnamon also - is it time to have our own freedesktop.org name?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
<key name="custom-acceleration" type="b">
<default>false</default>
<summary>Custom Motion Acceleration</summary>
<description>Wheather or not to use a custom motion acceleration value.</description>
<description>Whether or not to use a custom motion acceleration value.</description>
</key>
<key name="motion-acceleration" type="d">
<default>-1</default>
Expand All @@ -180,7 +180,7 @@
<key name="custom-threshold" type="b">
<default>false</default>
<summary>Custom Motion Threshold</summary>
<description>Wheather or not to use a custom motion threshold value.</description>
<description>Whether or not to use a custom motion threshold value.</description>
</key>
<key name="motion-threshold" type="i">
<default>-1</default>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
<key name="power-notifications-for-other-devices" type="b">
<default>true</default>
<summary>Low battery notifications for other connected devices</summary>
<description>Whether to show low battery notifications for conected devices other than keyboards and mice.</description>
<description>Whether to show low battery notifications for connected devices other than keyboards and mice.</description>
</key>
</schema>
</schemalist>
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ cinnamon-settings-daemon (3.8.0) tara; urgency=medium
* mouse: simplify finalize call https://github.com/GNOME/gnome-settings-daemon/commit/7c268ddf2c0fea89ed053e55002fba65c523904a#diff-f3eb78dbfdd1699b6580551f271aba41
* mouse: simplify stop call https://github.com/GNOME/gnome-settings-daemon/commit/9e4e46a47fd385807f9cbae9d42ebcc312680a1e#diff-f3eb78dbfdd1699b6580551f271aba41
* mouse: replace dialogue by warning https://github.com/GNOME/gnome-settings-daemon/commit/3e337371249dace2613d4698d91f587621188c19#diff-f3eb78dbfdd1699b6580551f271aba41
* mouse: remove empty contructor and dispose functions https://github.com/GNOME/gnome-settings-daemon/commit/98df44761b4f0c70078df635aaa68adff6454380#diff-f3eb78dbfdd1699b6580551f271aba41
* mouse: remove empty constructor and dispose functions https://github.com/GNOME/gnome-settings-daemon/commit/98df44761b4f0c70078df635aaa68adff6454380#diff-f3eb78dbfdd1699b6580551f271aba41
* mouse: wrap device button mapping into gdk_error_trap_push/pop https://github.com/GNOME/gnome-settings-daemon/commit/7a07cd12b862fa40ab5c38fee3dc264bb483a494#diff-f3eb78dbfdd1699b6580551f271aba41
* mouse: wrap pointer acceleration changes into a gdk_error_trap https://github.com/GNOME/gnome-settings-daemon/commit/8b78228a7e0abfc2c1561a275214da5d77cc7a93#diff-f3eb78dbfdd1699b6580551f271aba41
* locate-pointer: Remove support for multiple X screens https://github.com/GNOME/gnome-settings-daemon/commit/cf677a9c47d868b0bdae026b9d0db36df75f9dac#diff-f3eb78dbfdd1699b6580551f271aba41 gdk_display_get_n_screens is now hardcoded just to return 1, so take out the loop using it
Expand Down
2 changes: 1 addition & 1 deletion plugins/color/csd-color-manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ gcm_utils_mkdir_for_filename (const gchar *filename, GError **error)
goto out;
}

/* ensure desination does not already exist */
/* ensure destination does not already exist */
ret = g_file_query_exists (parent_dir, NULL);
if (ret)
goto out;
Expand Down
2 changes: 1 addition & 1 deletion plugins/datetime/csd-datetime-mechanism.c
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ register_mechanism (CsdDatetimeMechanism *mechanism)
&error);

if (error != NULL) {
g_critical ("error exporting datetime intereface: %s", error->message);
g_critical ("error exporting datetime interface: %s", error->message);
g_error_free (error);
goto error;
}
Expand Down
2 changes: 1 addition & 1 deletion plugins/power/csd-power-manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -3364,7 +3364,7 @@ idle_is_session_inhibited (CsdPowerManager *manager, guint mask)
* to adjust timeout, as related to current idle time, so the idle
* timeout will fire as designed.
*
* Return value: timeout to set, adjusted acccording to current idle time.
* Return value: timeout to set, adjusted according to current idle time.
**/
static guint
idle_adjust_timeout (guint idle_time, guint timeout)
Expand Down
2 changes: 1 addition & 1 deletion plugins/xsettings/csd-xsettings-manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ translate_string_string_window_buttons (CinnamonSettingsXSettingsManager *manage

/* This is kind of a workaround. "menu" is useless in metacity titlebars
* it duplicates the same features as the right-click menu.
* In CSD windows on the hand it is required to show unique featues.
* In CSD windows on the hand it is required to show unique features.
*/

tmp = g_variant_get_string (value, NULL);
Expand Down
Loading