Skip to content

Commit

Permalink
Fix the worst blocking bug for the development of this extension
Browse files Browse the repository at this point in the history
which was again an unnecessary breaking change from GNOME Shell, making no fucking sense, fixable in 1 line, but undocumented
  • Loading branch information
maoschanz committed Feb 20, 2021
1 parent 4294602 commit 7514710
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 19 deletions.
27 changes: 13 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ A GNOME Shell extension providing customizable sticky notes.

### Compatible versions

Version 19 has been released the 06/10/2020

| GNOME Shell version | Extension version 19 | 18 | 17 | 15 |
|---------------------|----------------------|-----|-----|-----|
| **3.38** | Yes | | | |
| **3.36** | Yes | Yes | | |
| **3.34** | ?? | Yes | | |
| **3.32** | ?? | Yes | Yes | |
| **3.30** | ?? | Yes | Yes | Yes |
| **3.28** | | | Yes | Yes |
| **3.26** | | | Yes | Yes |
| **3.24** | | | | Yes |
| **3.22** | | | | Yes |
Version 20 has been released the 20/02/2021

| GNOME Shell version | Extension version 20 | 19 | 18 | 17 | 15 |
|---------------------|----------------------|-----|-----|-----|-----|
| **3.38** | Yes | Yes | | | |
| **3.36** | Yes | Yes | Yes | | |
| **3.34** | | ?? | Yes | | |
| **3.32** | | ?? | Yes | Yes | |
| **3.30** | | ?? | Yes | Yes | Yes |
| **3.28** | | | | Yes | Yes |
| **3.26** | | | | Yes | Yes |
| **3.24** | | | | | Yes |
| **3.22** | | | | | Yes |

### Available languages

Expand All @@ -30,7 +30,6 @@ Version 19 has been released the 06/10/2020
| fr | French |
| hr | Croatian |
| nl | Dutch |
| es | Castillan |
| tr | Turkish |
| zh_TW | Chinese (traditional)

Expand Down
2 changes: 1 addition & 1 deletion notes@maestroschan.fr/extension.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// notes@maestroschan.fr/extension.js
// GPL v3
// Copyright 2018-2020 Romain F. T.
// Copyright 2018-2021 Romain F. T.

const { St, Shell, GLib, Gio, Meta } = imports.gi;
const PanelMenu = imports.ui.panelMenu;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
# Romain F. T. <rrroschan@gmail.com>, 2018-2020
# Romain F. T. <rrroschan@gmail.com>, 2018-2021
#
msgid ""
msgstr ""
Expand Down
2 changes: 1 addition & 1 deletion notes@maestroschan.fr/menus.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// notes@maestroschan.fr/menus.js
// GPL v3
// Copyright 2018-2020 Romain F. T.
// Copyright 2018-2021 Romain F. T.

const { Clutter, St } = imports.gi;
const Main = imports.ui.main;
Expand Down
1 change: 1 addition & 0 deletions notes@maestroschan.fr/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
"settings-schema": "org.gnome.shell.extensions.notes-extension",
"version": 0
}

3 changes: 2 additions & 1 deletion notes@maestroschan.fr/noteBox.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// notes@maestroschan.fr/noteBox.js
// GPL v3
// Copyright 2018-2020 Romain F. T.
// Copyright 2018-2021 Romain F. T.

const { Clutter, St, GLib, Gio } = imports.gi;
const Main = imports.ui.main;
Expand Down Expand Up @@ -81,6 +81,7 @@ var NoteBox = class NoteBox {
// if true, the scrollbar is inside the textfield, else it's outside
x_expand: true,
y_expand: true,
clip_to_allocation: true,
});

this.noteEntry = new St.Entry({
Expand Down
2 changes: 1 addition & 1 deletion notes@maestroschan.fr/prefs.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// notes@maestroschan.fr/prefs.js
// GPL v3
// Copyright 2018-2020 Romain F. T.
// Copyright 2018-2021 Romain F. T.

const{ GObject, Gtk, Gdk, GdkPixbuf, GLib } = imports.gi;
const Mainloop = imports.mainloop;
Expand Down

1 comment on commit 7514710

@maoschanz
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix #36

Please sign in to comment.