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

[request] Consider building emacs27 and emacs27-nox11 with gnutls #281

Open
anadrome opened this issue Sep 12, 2020 · 0 comments
Open

[request] Consider building emacs27 and emacs27-nox11 with gnutls #281

anadrome opened this issue Sep 12, 2020 · 0 comments

Comments

@anadrome
Copy link

anadrome commented Sep 12, 2020

Currently Emacs is built by default without gnutls. It is available as a package option for emacs27, but not for emacs27-nox11. However since 27.1 the previous built-in ways of getting TLS support in Emacs have been removed, so gnutls is almost necessary now. Various common things, like installing MELPA packages or browsing/downloading from the web, don't work out of the box anymore without a recompile.

Here's the NEWS entry from the 27.1 release:

The tls.el and starttls.el libraries are now marked obsolete. Use of built-in libgnutls based functionality (described in the Emacs GnuTLS manual) is recommended instead.

jperkin pushed a commit that referenced this issue Sep 16, 2020
Update ruby-recog package to 2.3.14.


2.3.14 - 2020.08.07

Highlights:

* HTTP: Improved coverage of VNC related web services (#282)
* HTTP: Improved coverage and CPEs of SonicWall and Cisco Expressway (#283)

2.3.13 - 2020.08.03

Highlights:

* Improving coverage of Moxa devices (#280)
* Adding fingerprints for certain high volume services as observed by
  Project Sonar (#280, #281)
* CPE: Improving the number of fingerprints and Project Sonar matches that
  returned CPEs (#281)

2.3.12 - 2020.07.23

Highlights:

* HTTP: Additional SAP NetWeaver and Glassfish coverage and fixes (#279)
* FTP: Serv-U and Filezilla improvements (#279)
* CPE: Tweaks to vendor, service, and cpe-remap.yaml which resulted in much
  better coverage for services frequently seen on the Internet. See PR for
  stats. (#279)

2.3.11 - 2020.07.16

Highlights:

* HTTP: Adjust banner for $ProjectRevision (Treck TCP/IP) by Anderson Luan
  (#272)
* HTTP: SAP Internet Graphics Server and Message Server fingerprints (#275)
* DNS: Windows Server 2008 SP2, performance and other coverage tweaks (#276)
* DNS: Avoid spoofed Microsoft DNS Server, add Debian Buster (#277)
* CPE: Correct CPE generating automation (#278)

2.3.10 - 2020.07.14

Highlights:

* SAP NetWeaver: Telnet and HTTP tweaks (#274)

2.3.9 - 2020.07.14

Highlights:

* Upgrade lxml, improve fingerprint readability (#268)
* New fingerprints and completed normalization by HD Moore (#269)
* New Database: favicons.xml (MD5 fingerprints for favicon.ico files) by HD
  Moore (#270)
* HTTP: Project Sonar HTTP updates (including SAP Netweaver / Oracle) (#273)
jperkin pushed a commit that referenced this issue Oct 19, 2020
0.25.9          (2019-06-18):

* Bugfix: %GITHUB%/issues/261
       Issue with iterating Python sequences
* Bugfix: %GITHUB%/issues/271
       Chose cell coordinates on "Make Cell"
* Bugfix: %GITHUB%/issues/272
       Error message if trying to run macros in unsupported languages
* Bugfix: %GITHUB%/issues/275
       "Write without context" did not have an effect with OASIS
* Bugfix: %GITHUB%/issues/276
       LayerPropertiesNodeRef was not working as documented
* Bugfix: %GITHUB%/issues/278
       Lost reference with ObjectInstPath#shape
* Bugfix: %GITHUB%/issues/281
       Width and space violations are reported now also for
       the "kissing corners" case

0.25.8          (2019-02-23):

* Bugfix: %GITHUB%/issues/234
       Issues with LayoutView#save_image_with_options
* Bugfix: %GITHUB%/issues/232
       Crash on reading .lyp files with big stipple pattern
* Bugfix: %GITHUB%/issues/228
       Bug in Region#interact and DRC's "interact" function.
* Bugfix: %GITHUB%/issues/225
       Mirrored custom stipple pattern

0.25.7          (2019-01-09):

* Bugfix: %GITHUB%/issues/200
       Safer iteration of cell instances and shapes (with
       modifications of container during iteration) - in this
       case while flattening instances
* Bugfix: %GITHUB%/issues/209
       Reader options were grayed out in stream import feature.
* Bugfix: %GITHUB%/issues/207
       Basic.TEXT PCell was rounding bias a spacing values to
       integer multiples.
* Bugfix: %GITHUB%/issues/203
       A segfault was fixed that happend on certain platforms
       when closing the application (e.g. CentOS7).
* Bugfix: (RBA/pya) Technology#load was not working
       Instead of load, the technology was saved.
jperkin pushed a commit that referenced this issue Dec 14, 2020
# processx 3.4.5

* New options in `pty_options` to set the initial size of the pseudo
  terminal.

* Reading the standard output or error now does not crash occasionally
  when a `\n` character is at the beginning of the input buffer (#281).

# processx 3.4.4

* processx now works correctly for non-ASCII commands and arguments passed
  in the native encoding, on Windows (#261, #262, #263, #264).

* Providing multiple environment variables now works on windows (#267).

# processx 3.4.3

* The supervisor (activated with `supervise = TRUE`) does not crash
  on the Windows Subsystem on Linux (WSL) now (#222).

* Fix ABI compatibility for pre and post R 4.0.1 versions. Now CRAN
  builds (with R 4.0.2 and later 4.0.x) work well on R 4.0.0.

* Now processx can run commands on UNC paths specified with
  forward slashes: `//hostname/...` UNC paths with the usual
  back-slashes were always fine (#249).

* The `$as_ps_handle()` method works now better; previously it
  sometimes created an invalid `ps::ps_handle` object, if the system
  clock has changed (#258).

# processx 3.4.2

* `run()` now does a better job with displaying the spinner on terminals
  that buffer the output (#223).

* Error messages are now fully printed after an error. In non-interactive
  sessions, the stack trace is printed as well.

* Further improved error messages. Errors from C code now include the
  name of the C function, and errors that belong to a process include the
  system command (#197).

* processx does not crash now if the process receives a SIGPIPE signal when
  trying to write to a pipe, of which the other end has already exited.

* processx now to works better with fork clusters from the parallel
  package. See 'Mixing processx and the parallel base R package' in the
  README file (#236).

* processx now does no block SIGCHLD by default in the subprocess,
  blocking potentially causes zombie sub-subprocesses (#240).

* The `process$wait()` method now does not leak file descriptors on
  Unix when interrupted (#141).
jperkin pushed a commit that referenced this issue Feb 18, 2021
This update to the Cascadia font family brings the following changes:

    The full control pictures block has been added (u+2400 to u+2426). For purposes of rendering, the two letter
    abbreviations have been used instead of the standard three letter abbreviations (#219)
        image
        Additionally, ss20 includes the oft-unused graphical representations of these codepoints (for fun!)
        image

    Full support for Fira Code's current ligature set (with a few exceptions). Now featuring infinite arrows!!! (#276)
        image
        This involved a full refactoring of the calt feature—for those interested, it now uses forward-looking
        substitutions instead of backward-looking substitutions and progressive substitution to reduce code. This also
        required some redesigning of the greater / lesser related ligatures. Please note, I have also removed all the
        obsolete ligatures now covered by the arrows code.

    There was a mismatch in the font's postscript naming conventions that was corrected. Should now render all weights in
    Word. Note there is apparently an additional bug in Mac Word's implementation of variable fonts which should be
    available in an update mid-Feb. (#329)

    Reworked the hints for the mod and superscript glyphs so that they're bottom-up rather than top-down. This allows for
    better bottom alignments.

New Glyphs

    ⏎ (#262)
    additional codepoints for control characters U+21B2, U+2771, U+2770, U+2423 (#264)
    U+211E ℞ (#324)
    U+2302 HOUSE (#359)

New Ligatures

    !: and !. added (#281)
    /\ and \/ added (#290)
    ??= added (#301)
    <:> and other variants implemented via the calt (#327)
    refactoring

Changes

    Added x-height instruction into ttfautohint to control the (#371)
    height of the lowercase.
    Completely redesigned quote marks for better recognition (#375)
        image
        Note: this only applies to curved/smart quotes
    updated hinting to achieve more consistent results (#377)
    increased height of thetamod (#381)
    reduced the width of the hooklefts (#382)
        image
    updated heights on esh, glottalstop, glottalstopreversed (#383)
        image
    tweaked hinting a little bit (#384)
    added remaining soft-dotting (#386)
        image
    changed designs of the angled quotes (#392)
        image
    changed former ~= symbol to a simpler component-based (#394)
    version. Should be less confusing now for Lua / Matlab users.
    made the underline thicker based on font weight (#395)
        image
    increased size of degree (#400)

Aside from the above changes, this version also includes many other small updates including spacing, outline quality
improvements, and fixing hinting.
jperkin pushed a commit that referenced this issue Apr 26, 2021
0.2.13.0
* Add HashMap.compose. Thanks Alexandre Esteves.

0.2.12.0
* Add HashMap.isSubmapOf[By] and HashSet.isSubsetOf. Thanks Sven
  Keidel. (#282)
* Expose internal modules. (#283)
* Documentation improvements in Data.HashSet, including a
  beginner-friendly introduction. Thanks Matt Renaud. (#267)
* HashMap.alterF: Skip key deletion for absent keys. (#288)
* Remove custom unsafeShift{L,R} definitions. (#281)
* Various other documentation improvements.

0.2.11.0
* Add HashMap.findWithDefault (soft-deprecates
  HashMap.lookupDefault). Thanks, Matt Renaud.
* Add HashMap.fromListWithKey. Thanks, Josef Svenningsson.
* Add more folding functions and use them in Foldable
  instances. Thanks, David Feuer.
* Add HashMap.!?, a flipped version of lookup. Thanks, Matt Renaud.
* Add a Bifoldable instance for HashMap. Thanks, Joseph Sible.
* Add a HasCallStack constraint to (!). Thanks, Roman Cheplyaka.

Bug fixes
* Fix a space leak affecting updates on keys with hash
  collisions. Thanks, Neil Mitchell. (#254)
* Get rid of some silly thunks that could be left lying
  around. (#232). Thanks, David Feuer.

Other changes
* Speed up the Hashable instances for HashMap and HashSet. Thanks,
  Edward Amsden.
* Remove a dependency cycle hack from the benchmark suite. Thanks,
  Andrew Martin.
* Improve documentation. Thanks, Tristan McLeay, Li-yao Xia, Gareth
  Smith, Simon Jakobi, Sergey Vinokurov, and likely others.
jperkin pushed a commit that referenced this issue Jun 15, 2021
pkgsrc change: correct CATEGORIES.


1.8.14 (2021-06-09)

Implemented enhancements:

* (GH-225) Add support for custom insync #285 (michaeltlombardi)
* Improve type validation error messages to show expected types #279 (timidri)
* Support puppet device --resource ... --to_yaml invocation; drop puppet4
  and jruby 1.7 testing #278 (timidri)

Fixed bugs:

* Git tag 1.8.13 exists, but missing on rubygems.org / in CHANGELOG.md #266

Closed issues:

* CHANGELOG.md entries are missing for latest releases? #258

Merged pull requests:

* Upgrade to GitHub-native Dependabot #287 (dependabot-preview[bot])
* (IAC-1455) - Removal of Inappropriate Terminology #283 (david22swan)
* Update puppetlabs_spec_helper requirement from ~> 2.7 to ~> 3.0 #281
  (dependabot-preview[bot])
* (maint) Update Puppet VS Code Extension ID #277 (jpogran)
* (IAC-859) Add ruby 2.7 to test matrix #276 (DavidS)
* (maint) Cleanup gemfile and fix codecov dependency #275 (DavidS)
* Language correction #270 (epackorigan)
* (maint) Update CHANGELOG #268 (DavidS)
* (maint) update test matrix for current supported versions; remove older
  versions to cut down on resource usage #265 (DavidS)
* (maint) Mock Hocon.load(...) #263 (IrimieBogdan)
* Update rake requirement from ~> 10.0 to ~> 13.0 #262
  (dependabot-preview[bot])
* (maint) update Gemfile to allow use of non-vulnerable rake version 12.3.3
  #260 (DavidS)
jperkin pushed a commit that referenced this issue Jan 24, 2022
# 0.66

Asciidoc:
 * Support empty cells in tablecells mode (GitHub's #343) [J.N. Avila]
 * Disable tablecells when table is not in PSV format (GitHub's #343 too)
   [J.N. Avila]

Yaml:
 * New option "paths" to select the full paths to extract.
   The old "key" option (that allows to select any path ending with
   the given key) still works as previously (thanks Oliver Rahner).

Tests:
 * Make the SGML tests use valid input files to fix brekages on
   paranoid OSes (GitHub's#327 -- thanks newbluemoon for report and fix).
 * Add a new tests that fixes the weird permission settings of the
   other tests, and prevent the users from running the tests as root.
   (GitHub's #332 -- thanks Oliver Rahner for stepping on that trap)
 * Fix the testsuite so that it works even if the source is checkouted
   in an arbitrary directory (GitHub's #338).

po4a-gettextize:
 * Use UTF-8 by default for localized charset.

# 0.65

Asciidoc:
 * Ensure that comments appear in the translated contents, to preserve
   the document structure (Github's #307 and #308). Thanks Jean-Noël
   Avila for the fix!
 * Add an "nolinting" option to disable lint messages.

po4a runner:
 * In split mode, allow to group several files within the same POT file.
 * Rename the option 'master:file' to 'pot' for clarity. The old name
   still works (with a warning).

Tex:
 * Don't use the full absolute file path in #: references of PO files.
   (Debian's #998196, Github's #281)

# 0.64

Asciidoc:
 * Detect sublevel description lists with :::
 * Don't split in attributes include:: and ifeval:: lines (Github's #298)

Pod:
 * Don't wrap textblocks, as it may break C<> markup (similar to Github's #242)

Core:
 * Mitigate Perl bug #18604 (simplify a regexp into a substring index) (Github's #302)
 * Improve the consistency of all our module lists (related to Github's #136)
   Thanks Viet Than.

# 0.63

A bug in v0.62 removed all binary translations :(

Asciidoc:
 * Properly deal with the YAML Front Matter, when one is found.

Texinfo:
 * Add support for @tindex (Github's #284)

Yaml:
 * Follow the reference style of YAML Front Matter in Markdown module to
   fix the GitHub issue #289. (GitHub's #292)

Portability:
 * Fix po4a(1) on Windows (GitHub's #293)

Build scripts:
 * Fix Po4aBuilder to use -I instead of reseting PERL5LIB (Github's #286)
 * Fix Po4aBuilder to actually install the mo files (GitHub's #294)
jperkin pushed a commit that referenced this issue Jun 2, 2022
Upstream changes:
Changes in 0.4-20 (2022-04-29)

    Remove check for Yahoo Finance cookies because the site no longer responds with a cookie, and that caused the connection attempt to fail. This affected getSymbols(), getDividends(), and getSplits(). Thanks to several users for reporting, and especially to @pverspeelt and @alihru for investigating potential fixes! #358

    Update getSymbols.yahooj() for changes to the web page. #312

    Add HL() and supporting functions. These are analogues to HLC(), OHLC(), etc.Thanks for Karl Gauvin for the nudge to implement them.

    Add adjusted close to getSymbols.tiingo() output. Thanks to Ethan Smith for the suggestion and patch! #289 #345

    Use a Date index for getSymbols.tiingo() daily data. Thanks to Ethan Smith for the report! #350

    Remove unneeded arguments to the getSymbols.tiingo() implementation. Thanks to Ethan Smith for the suggestion and patch! #343 #343

    Load dividends and splits data into the correct environment when the user provides a value for the env argument. The previous behavior always loaded the data into the environment the function was called from. Thanks to Stewart Wright for the report and patch! #33

    Make getOptionChain() return all the fields that Yahoo Finance provides. Thanks to Adam Childers (@rhizomatican) for the patch! #318 #336

    Add orats as a source for getOptionChain(). Thanks to Steve Bronder (@SteveBronder) for the suggestion and implementation! #325

    Improve the error message when getSymbols() cannot import data for a symbol because the symbol is not valid or does not have historical data. Thanks to Peter Carl for the report. #333

    Fix the getMetals() example in the documentation. The example section previously had an example of getFX(). Thanks to Gerhard Nachtmann

    for the report and patch! #330

    Fix getQuote() so it returns data when the ticker symbol contains an “&”. Thanks to @pankaj3009 for the report! #324

    Fix addMACD() when col is specified. Thanks to @nvalueanalytics for the report! #321

Changes in 0.4-18 (2020-11-29)

    Fix issues handling https:// in getSymbols.yahooj(). Thanks to @Lobo1981 and @tchevri for the reports and @ethanbsmith for the suggestion to move from XML to xml2. #310 #312

    Fix getSymbols.yahoo(), getDividends(), and getSplits() so they all handle download errors and retry again. Thanks for @helgasoft for the report on getSymbols.yahoo() and @msfsalla for the report on getDividends() and getSplits(). #307 #314

    Add implied volatility and last trade date to getOptionChain() output. Thanks to @hd2581 and @romanlelek for the reports. And thanks to @rjvelasquezm for noticing the error when lastTradeDate is NULL. #224 #304

    Fix getOptionChain() to throw a warning and return NULL for every expiry that doesn’t have data. #299

    Add “Defaults” handling to getQuote() and getQuote.yahoo(). Thanks to @ethanbsmith for the report. #291

    Add Bid and Ask fields to the output from getQuote(). Thanks to @jrburl for the report and PR. #302

    Fix “Defaults” to handle unexported function (e.g. getQuote.av(). Thanks to @helgasoft for the report. #316

    importDefaults() doesn’t call get() on vector with length > 1. Thanks to Kurt Hornik for the report. #319

Changes in 0.4-17 (2020-03-31)

    chartTheme() now works when quantmod is not attached. Thanks to Kurt Hornik for the report.

Changes in 0.4-16 (2020-03-08)

    Remove disk I/O from getSymbols() and getQuote(). This avoids any disk contention, and makes the implementation pattern more consistent with other functions that import data. Thanks to Ethan Smith suggestion and PR. #280 #281

    Make getQuote() robust to symbols without data, so it does not error if one or more symbols are not found. Also return quotes in the same order as the ‘Symbols’ argument. Thanks to Ethan Smith feature request and PR. #279 #282 #288

    Handle semicolon-delimited symbol string handling to main getQuote() function. This makes getQuote() consistent with getSymbols(). Thanks to Ethan Smith suggestion and PR. #284 #285

    Fix ex-dividend and pay date mapping. getQuote() returned the dividend pay date labeled as the ex-dividend date. Thanks to @matiasandina for the report. #287

    Fix Yahoo Finance split ratio. The delimiter changed from “/” to “:”. For example, a 2-for-1 split was 1/2 but is now “2:1”. Thanks to @helgasoft for the report. #292

    Error messages from getQuote.alphavantage() and getQuote.tiingo() no longer contain the API key when symbols can’t be found. #286

    Fix getQuote.alphavantage() by replacing the defunct batch quote request with a loop over the single quote request. Thanks to @helgasoft for the report and patch. #296

    Update getOptionChain() to handle empty volume or open interest Thank to @jrburl for the report and PR. #299 #300
jperkin pushed a commit that referenced this issue Jul 14, 2022
============
Glade 3.38.2
============

	- Fix windows compatibility issues
	- Fix build against Python 3.9 (Jan Alexander Steffens)
	- Fix issue #355 "Make notification text selectable"
	- Fix issue #53 "Can't choose a FileChooserDialog for a FileChooserButton"
	- Fix issue #371 "Glade user survey not working (TLS error)"

============
Glade 3.38.1
============

	- Fix issue #471 "XML not updated after adding element"
	- Fix issue #480 "version field not always updated in XML"
	- Fix issue #474 "GtkLabel: setup text attribute issues"
	- Fix issue #479 "Glade 3.36.0 segfaults when opening a file"
	- Fix issue pasting widget with ctrl+v in GtkGrid

============
Glade 3.38.0
============

	- Load template files as new GTypes and add them to "User templates" widget group automatically without the need of a catalog
	- Added JavaScript widget support
	- Use version data from gir to improve deprecation/target tests
	- Implement survey using new backend at surveys.gnome.org
	- Keep survey state in config file
	- Associate with application/x-gtk-builder (Caolán McNamara)
	- Project properties dialog improvements. (Use headerbar, stack and stach switcher, add warnings textview)
	- Improve toolkit target version selection in project properties dialog
	- Improve treemodel char data type handling
	- Remove autotools (Iñigo Martínez)
	- New gjs-1.0 1.64 dependency
	- Bump Gtk dependency to 3.24
	- Bump webkit2gtk dependency to 2.28
	- Fixed all compiler/gir warnings
	- Issue #385: GtkCellRendererText causes deprecated warnings for ghost properties
	- Issue #444: show-emoji-icon is missing "minimum version"/since constraint
	- Issue #367: Glade removes double/triple slashes from URLs
	- Issue #452: GtkComboBox cell renderers editor is too hard to discover
	- Issue #363: Toplevel windows are leaked when closing a project
	- Issue #462: Crash when creating a new GtkAssistant and pressing it
	- Issue #463: Specify file on command line
	- Issue #461: Glade resets number of rows and columns in GtkGrid
	- Issue #460: 3.37.0: test suite fails because glade uses incorrectly asserts in test units
	- Issue #412: Fix inconsistent "top-level", "top level", "toplevel" spelling in translatable strings
	- Issue #281: GladeProperty: Do not replace - with _
	- Issue #389: GladeProject: show message on invalid GtkBuilder file
	- Issue #446: GladeGtkListBox: fix size request issue
	- Issue #432: GladeStandarStock, GladeStandarStockImage: fix get_type() functions for introspection
	- Issue #447: GladeGtkWindow: Fix CSD support
	- Issue #456: Utils: use g_param_spec_uchar() for uchar types
	- Issue #459: Gtk catalog: add GtkRecentChooserMenu to Display group
	- Issue #433: Implement survey using new backend at surveys.gnome.org
	- Build: use gtk-mac-integration only when creating bundle (Tom Schoonjans)
	- Ignore locale when saving numeric values (Alberto Fanjul)
	- Remove config for external builds (Alberto Fanjul)
	- Python plugin: fix linking error
	- Tests: add python and javascript test case
	- gtk: Add GtkScrolledWindow propagate-natural-width property (Corentin Noël)
	- GladeScrolledWindowEditor: Squeeze width/height properties in two columns
	- Gtk plugin: add missing displayable values
	- Webkit2gtk plugin: add missing displayable values and sandbox web view
	- dtd: Make init-function an element, not an attribute (Adrien Plazas)
jperkin pushed a commit that referenced this issue Sep 28, 2022
============
Glade 3.40.0
============
	- Remove survey
	- Add user manual menu item (Sabri Ünal)
	- 'Clear' action in "Setup Text Attributes" dialog now clears only selected attributes (crvi)
	- Fix issue #502 sync draw-indicator on setting xalign (Caolán McNamara)
	- Fix issue #499 and #509 "Drop overzealous check using only the first child"
	- Fix Segfault in gnome-builder when widget doesn't have a name (Peter Maatman)
	- Fix issue #373 "Move separator in hamburger menu one up, to be consistent with other GNOME applications"
	- Fix build against Python 3.9
	- Fix issue #484 "Crash with GtkRecentChooserDialog"
	- Fix issue #194 "Using List Store can result in program crash."
	- Fix issue #53 "Can't choose a FileChooserDialog for a FileChooserButton"
	- Fix issue #98 #491
	- Fix issue #355 "Make notification text selectable"
	- Fix windows build on msys
	- Fix issue #360 "No examples in documentation on using custom catalogues with gtkBuilder"
	- Fix issue #406 "AtkObject::accessible-role should not be translatable"
	- Fix issue #479 "Glade 3.36.0 segfaults when opening a file"
	- Fix issue #471 "XML not updated after adding element"
	- Fix issue #474 "GtkLabel: setup text attribute issues"
	- Fix issue #480 "version field not always updated in XML"
	- Fix issue pasing widget with ctrl+v in GtkGrid
	- Fix issue #470 "Widgets of type need placeholders to add children"
	- Fix issue #472 "gnome-nightly: About dialog should display git commit rev"


============
Glade 3.38.0
============

	- Load template files as new GTypes and add them to "User templates" widget group automatically without the need of a catalog
	- Added JavaScript widget support
	- Use version data from gir to improve deprecation/target tests
	- Implement survey using new backend at surveys.gnome.org
	- Keep survey state in config file
	- Associate with application/x-gtk-builder (Caolán McNamara)
	- Project properties dialog improvements. (Use headerbar, stack and stach switcher, add warnings textview)
	- Improve toolkit target version selection in project properties dialog
	- Improve treemodel char data type handling
	- Remove autotools (Iñigo Martínez)
	- New gjs-1.0 1.64 dependency
	- Bump Gtk dependency to 3.24
	- Bump webkit2gtk dependency to 2.28
	- Fixed all compiler/gir warnings
	- Issue #385: GtkCellRendererText causes deprecated warnings for ghost properties
	- Issue #444: show-emoji-icon is missing "minimum version"/since constraint
	- Issue #367: Glade removes double/triple slashes from URLs
	- Issue #452: GtkComboBox cell renderers editor is too hard to discover
	- Issue #363: Toplevel windows are leaked when closing a project
	- Issue #462: Crash when creating a new GtkAssistant and pressing it
	- Issue #463: Specify file on command line
	- Issue #461: Glade resets number of rows and columns in GtkGrid
	- Issue #460: 3.37.0: test suite fails because glade uses incorrectly asserts in test units
	- Issue #412: Fix inconsistent "top-level", "top level", "toplevel" spelling in translatable strings
	- Issue #281: GladeProperty: Do not replace - with _
	- Issue #389: GladeProject: show message on invalid GtkBuilder file
	- Issue #446: GladeGtkListBox: fix size request issue
	- Issue #432: GladeStandarStock, GladeStandarStockImage: fix get_type() functions for introspection
	- Issue #447: GladeGtkWindow: Fix CSD support
	- Issue #456: Utils: use g_param_spec_uchar() for uchar types
	- Issue #459: Gtk catalog: add GtkRecentChooserMenu to Display group
	- Issue #433: Implement survey using new backend at surveys.gnome.org
	- Build: use gtk-mac-integration only when creating bundle (Tom Schoonjans)
	- Ignore locale when saving numeric values (Alberto Fanjul)
	- Remove config for external builds (Alberto Fanjul)
	- Python plugin: fix linking error
	- Tests: add python and javascript test case
	- gtk: Add GtkScrolledWindow propagate-natural-width property (Corentin Noël)
	- GladeScrolledWindowEditor: Squeeze width/height properties in two columns
	- Gtk plugin: add missing displayable values
	- Webkit2gtk plugin: add missing displayable values and sandbox web view
	- dtd: Make init-function an element, not an attribute (Adrien Plazas)

Added/updated translations

	- ca, courtesy of Gil Forcada
	- ca, courtesy of Miquel-Àngel Burgos i Fradeja
	- cs, courtesy of Marek Černocký
	- da, courtesy of Ask Hjorth Larsen
	- da, courtesy of Last-Translator: scootergrisen
	- de, courtesy of Tim Sabsch
	- en_GB, courtesy of Bruce Cowan
	- es, courtesy of Daniel Mustieles
	- eu, courtesy of Asier Sarasua Garmendia
	- fr, courtesy of Thibault Martin
	- gl, courtesy of Fran Dieguez
	- hi, courtesy of Last-Translator:Sunny Sharma
	- hu, courtesy of Balázs Úr
	- id, courtesy of Kukuh Syafaat
	- kk, courtesy of Baurzhan Muftakhidinov
	- ko, courtesy of Changwoo Ryu
	- lt, courtesy of Aurimas Černius
	- pl, courtesy of Piotr Drąg
	- pt_BR, courtesy of Rafael Fontenelle
	- ro, courtesy of Florentina Mușat
	- sl, courtesy of Matej Urbančič
	- sv, courtesy of Anders Jonsson
	- tr, courtesy of Emin Tufan Çetin
	- uk, courtesy of Yuri Chornoivan
	- zh_CN, courtesy of Mandy Wang

============
Glade 3.36.0
============

	- widget: canonicalize support-warning property name
	- tests: Include back GtkTreeViewColumn
	- gtk+: properly cast to avoid warnings
	- gtk+: workaround truncation warning by being safer
	- gladeui: remove unused type_func variable
	- gladeui: Ensure that we write the "type-func" property when a get-type-function is defined in the catalog
	- Allow to specify placeholder to GtkListBox
	- gtk+: Allow to use GtkResponseType with GtkDialog and GtkInfobar buttons
	- gladeui: Change the boolean parsing logic to be the same as Gtk
	- Appdata: update app-id
	- Update FSF address
	- gladeui: Modernize GladeSignalEditor codebase
	- RDNN appdata & desktop file
	- gtk+: Add homogeneous property to GtkStackSwitcher
	- gladeui: Fix wrong pointer convertion in GladeDesignView
	- gtk+: Provide Gtk 3.22 properties for GtkScrolledWindow
	- gtk+: Add missing 3.22 enum/flag values
	- gladeui: Modernize GladeWidgetAdaptor definition
	- gtk+: Keep internationalization context in Atk properties
	- gladeui: Plug tiny leak on Drag & Drop
	- gladeui: Fix crash on drag-n-drop
	- gladeui: fix several tiny memory leaks found with valgrind
	- Make it easier to track GladeXML elements and be GObject Introspection friendly by registering boxed types
	- gladeui: Replace the last occurences of GladeWidgetClass with GladeWidgetAdaptor in the comments
	- gladeui: Use G_DECLARE_FINAL_TYPE for GladeObjectStub
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeNamedIconChooserDialog
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeInspector
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeEditorProperty
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeEditor
	- gladeui: Use G_DECLARE_INTERFACE for GladeEditable
	- gladeui: Use G_DECLARE_INTERFACE for GladeDrag
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeDesignView
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeDesignLayout
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeCommand
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeClipboard
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeCellRendererIcon
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeBaseEditor
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeApp
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeAdaptorChooserWidget
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeEditorSkeleton
	- gladeui: Use G_DECLARE_DERIVABLE_TYPE for GladeEditorTable
	- dnd: Enable Drag&Drop on wayland
	- gladeui: remove implicit cast in assignment
	- build: remove G_CONST_RETURN usage
	- gladeui: ignore various GParameter deprecations
	- Fix on debug traces after rename GladePropertyClass to GladePropertyDef
	- meson: Activate enable-debug variables
	- Prevent dragging an ancestor inside a child
	- GladePopup: Clear add item when adding as toplevel
	- GtkImage: Fix icon size being reset
	- build: Fix OSX support in meson
	- build: Do not use a system variable only for Windows
	- Fix loading dylibs on OSX
	- Set the "About Dialogue" as modal
	- Fix split sentense in GladeProject
	- Adding "Glade" to "About" section.
	- Respect the Glade namespace for macros and defines
	- Rename *Klass to *Class as there are no name collision anymore
	- Fix two memory leaks discovered with valgrind
	- GladeSignalDef: fix documentation for glade_signal_def_set_deprecated
	- Rename GWActionClass to GladeWidgetActionDef to use the right namespace
	- Rename GladePropertyClass to GladePropertyDef and declare it as boxed
	- Rename GladeSignalClass to GladeSignalDef and declare it as boxed
	- Create GladeSettings to hold the settings instead of using a Gtk widget for holding it
	- Add GDK_VERSION_MIN_REQUIRED
	- Utils: get the absolute path but avoid accessing it
	- Fix several compiler warnings
	- Replace some functions by Gtk 3.22 ones
	- GladeSignalClass: rename glade_signal_class_get_type
	- Allow to use GtkFileChooserNative
	- GladeProperty: Keep the bind-source, bind-property and bind-flags elements
	- Couple of fixes for memory leaks found with valgrind
	- GtkLinkButton: allow to edit the label
	- gladeui: Fix several memory leaks with GladeWidgetAdaptor
	- gladeui: Fix leak of create_type in GladePropertyClass
	- gladeui: fix memory leak in GWActionClass
	- introspection: Add many annotations to sources
	- No wide handles in `center_paned` and `left_paned`
	- flatpak: Set meson as buildsystem
	- build: Port to meson build system
	- gtk+: Add deprecated flag to GtkButton and GtkImage stock properties
	- doc: remove missing xml files
	- doc: Modernize the documentation
	- docs: Make some changes to fix warnings with the documentation
	- Add metadata information about releases
	- i18n: Do not use input file for not translated files
	- Fix xgettext string extraction for catalogs
	- snap: update for icon filename changes
	- Add translator comments to the .desktop file
	- gladeui-2.0.pc: Data paths relative to datadir
	- icon: update app icon
	- GladeProject: escape markup in parser errors
	- Use autoreconf instead deprecated gnome-common
	- Stop defaulting missing images to deprecated stock icons
	- Migrate from intltool to gettext
	- gladeui: Fix GIR package reference and add c-include
	- dtd: Add several new elements
	- Add initial implementation of Automatic Templates
	- GladeIntro: fix regresion in find_widget_forall()
	- GladeProject: add handler signals
	- GladeEditor: expose signal editor widget as a property
	- GladeIntro: use name and buildable name to find widgets
	- GladeWindow: simplify pointer mode actions
	- GladeWindow: move actions to GtkApplication
	- GladeEPropAttrs: use sane adjustment values for size and scale attrs
	- GtkActionable: add action-target property
	- Fix tab/space identation
	- GladeWidgetAdaptor: add glade_widget_adaptor_get_display_name()
	- GladeWindow: port to GtkApplication
	- Remove GladeInstantiable prefix from UI
	- GladeGtkBin: add initial support for GtkBin abstract class
	- GladeWidget: add support for abstract classes
	- widget-editor: Replace margin right/left for end/start
	- GladeModelButton: improve editor
	- GladeEditorProperty, GladePropertyClass, GladeWidgetAdaptor:
	- GladeModelButton: enable icon/iconic properties
	- Gtk plugin: add support for GFileIcon
	- Add initial support for GFile type properties
	- Bump Gtk required version to 3.22
	- GladeGtkBox: improve children sort function
	- GladeGtkHeaderBar: Improve position packing property handling
	- Add OARS tags
	- Gtk catalog: mark GtkImageMenuItem as deprecated since 3.10
	- GladeWidgetAdaptor: added deprecated-since metadata
	- GladeImageItemEditor: use display name for commands names
	- GladeCommand: ensure widget name on object properties
	- GladeGtkAdjustment: add digits virtual property
	- GladeEPropNumeric: bind precision property to spin button
	- GladeProperty: add precision property
	- GladePropertyClass: round floating point values to epsilon
	- ui/widget: Make template ver# warning more useful
	- GladeCommand: ignore special child types placeholders in add command. GladeGtkWindow: mark titlebar placeholder as special child type.
	- Gtk Catalog: add back GtkStatusbar
	- GladeGtkHeaderBar: mark title and subtitle as translatable
	- GladeGtkDialog: chain up post_create() method
	- GladeGtkWindow: remove get_children() method
	- GladeAdaptorChooser: add missing translation domain
	- GladeGtkWidget: save accessible-role atk property
	- GladeGtkWindow: fix regression in csd handling

============
Glade 3.22.0
============

	- Fix bug 774994 "in treeview columns editor contextual menu does nothing"
	- Simplified GladeBaseEditor
	- Fix formatting / layout of project verification details (Daniel P. Berrange)
	- Widget chooser: activate treeview with single click and enable Drag & Drop
	- Fix Design view selected state
	- Fixes bug 793036 "GtkCellRenderer Properties not loaded from glade file" (peter Onion)
	- Fix bug in action widgets response-id parsing on 32bits system
	- Fix bug 772485 "File Name property of GtkImage is copied to all other GtkImage"
	- GladeProject: always treat resource properties as relative
	- Fix bug 793652 "Crash when deleting a list"
	- Fix bug 793757 "Gtk-CRITICAL **: _gtk_window_add_popover: assertion '_gtk_widget_get_parent (popover) == NULL' failed"
	- Add GDK_SUPER_MASK accelerator handling (Sebastian Stang)
	- Fix bug #778537 "ActionBar need placeholder"
	- Fix bug #794141 - Gtk.IconView disappeared from glade (Albfan)

============
Glade 3.21.0
============

	- Main window UI overhaul
	- An enhanced enum integer editor based on patch contributed by Lukas K
	- Added GtkGLArea object to gtk+ catalog
	- Initial support for WebKit2GTK+ library
	- Add GtkStackSidebar to control and display widget group
	- Bug 767812 "Please don't list 'Taiwan' as 'Taiwan, Province of China' in the country list"
	- Bug 763188 - Use correct tag when referring to Palette (Sebastian Rasmussen)
	- Fix typo in translatable string; fixing old bug 746531 (Tristan)
	- Fix markup typos (Andre Klapper)

============
Glade 3.20.2
============

	- Fix bug 763624 "Glade interface designer eating ram & cpu" (Arnaud Rebillout)
	- Install appstream metadata to non-deprecated location (Jeremy Bicha)
	- Fix bug 790452 "Glade saves invalid GtkBuilder XML"
	- Fix bug 782645 "GtkLabel xalign and halign appeared in GTK+ 3.16 and are not deprecated" (Arnaud Rebillout)
	- Fix bug 773669 "add background class to GladeDesignLayout children" (Lukas K)

============
Glade 3.20.1
============

	- Fixed glib g_ptr_array_find() name clash
	- Fixed survey css matching error on CSD
	- Fixed bug #773997 "GLADE 3.20: crash on changing ToolItem type"
	- Fixes bug #765562 "Using Spacebar to change menu selction causes crash"
	- Fixed "format not a string literal" warnings (Bastien Nocera)
	- Fixed bug #765885 "client side decoration, no space to add header bar"
	- Fixed bug #589306 - Clicking in ... swap order of accelerators (Roberto Guido)
	- Fixed bug #761651 "[Wayland] glade previewer is resizing windows until it crashes gnome-shell"

============
Glade 3.20.0
============

	- Workspace layout: render frame and selection box with CSS
	- GtkWindow: don't set the same titlebar multiple times (Ben Iofel)
	- Fixed bug 761839: Fix 'glade' command name in user manual (Anders Jonsson)
	- Fixed bug 536840 - Save palette small icon preference (Tristan)
	- Fixed bug 430445 - null string default title for GtkFileChooserButton (Tristan)
	- Integrate new properties in editor for GtkLabel, GtkTextView, GtkPopover, GtkStackSwitcher (Tristan)
	- Fixed bug 750985 - GtkMisc property deprecations (Tristan)
	- Fixed bug 759872 - Show popovers hidden by model buttons (Tristan)
	- Fixed bug 751234 - Ignore tearoff-state property in the workspace (Tristan)
	- Fixed bug 759455 - Avoid showing window decorations in Glade's workspace (Tristan)
	- Fixed bug 759395 - Ignore ESC key press from popovers (Tristan)
	- Fixed bug 760610: Disable scroll events on property editor widgets (Tristan)
	- Support id-less builder files (DX hackfest)
	- Added missing tags to the AppData file (Richard Hughes)
	- Fixed bug 759847 "Don't crash when popover menu children have no visible-submenu set" Руслан Ижбулатов
	- Added support for GtkActionBar and GtkFlowBox (Matthias Clasen)
	- Main UI frontend: Use wide paned handles (Tristan)
	- Fixed warning about imbalanced children in GtkNotebook support (Tristan)
	- Added support for GtkPopoverMenu and GtkModelButton (Matthias Clasen)
	- Added support for GtkPopover bug 740104 (Matthias Clasen)
	- Fixed bug 754131 "Avoid crashes when loading boxes with center-child children"
	- Added <kudos> section to app data as requested by Richard Hughes.
	- Added missing displayable values bugs 758290, 758289, 758288, 758287 (Matthias Clasen)
	- Deprecate GtkAction, GtkActivatable, and friends bug 757609 (Ben Iofel)
	- Avoid GTK+ style context warnings bugs 758296, 758297, 758299, 758300 (Matthias Clasen)
	- Drop deprecated style properties in GladeCloseButton bug 758280 (Matthias Clasen)
	- Replace use of deprecated gdk_cursor_new (Ben Iofel)
	- Add "Stack" to "Add parent" menu bug 754030 (Florian Richter)
	- Fixed bug 741923 "build: Add dependency on libm for floor() and ceil()" (Philip Withnall)

============
Glade 3.19.0
============

	- Bug 732328 "New: add python3 support" (Bohuslav "Slavek" Kabrda)
	- Added new symbolic variant of the app icon (747024 - Jakub Steiner)
	- Bug #741165 "Previewer crashes when taking PNG screenshot"
	- Added GtkSidebarWidget support (Matthias Clasen)
	- Added GtkStack and GtkStackSwitcher support (738480 - Matthias Clasen)
	- Added GtkHeaderBar support (bug 700914 - Matthias Clasen)
	- Improved undo/redo command list handling.
	- Added GtkBox center-widget support (bug 738473 - Matthias Clasen)
	- Added GtkSearchBar support (bug 738493 - Matthias Clasen)
	- Support CSD windows (Bug 700914 - Matthias Clasen)
	- Use current gtk-mac-integration API (bug 738339 - Philip Chimento)
	- Fixed bug 732575 "Changed the type hint on the "Edit Separately" window to 'utility'" (Tristan)
	- Fixed bug "Missing plural form for UI string: emited %d time(s)"
	- Avoid reading freed data in glade_project_read_requires (David Shea)
	- Added class chooser popover to workspace. (Bug 708146 "Catalog search entry")
	- Added GThemedIcon support.
	- GladePreviewer: show handler information in infobar when a signal is emited.
	- Migrated UI from stock icons to icon names.
	- Seal needed deprecated API and replaced deprecared API.
	- GladeWindow: only show found recent files.
	- Added GtkLockButton support.

============
Glade 3.18.3
============

	- Fixed property editor focus lost bug with construct-only properties
	- GladePreviewer: Fixed bug previewing templates.
	- Fixed Bug 727914 "Logo is not shown in About-dialog"
	- Fixed Bug 353002 "wrong cursor over widgets"
	- Fixed bug 728377 "sensitivity of mnemonic-widget entry is not correct when loading file" (David Shea)
	- Fixed bug 728348 "impossible to set non-integer values for scale in text attribute dialog" (David Shea)
	- Fixed bug 726410 "Save palette appearance between sessions" (TingPing)

============
Glade 3.18.2
============

	- Added dialog at start up to advertise user survey.
	  Fixes bug 726800 "New: UI break: add dialog to advertise user survey"
	- Fixes bug 727992 "Editing UI and saving does not remove deleted Combo with Entry"
	- Fixed bug 364064 "Property Editor / Common tab: width & height request checkboxes have no effect"

============
Glade 3.18.1
============

	- Fixed Bug 727014 "32 bit builds fail with -Werror=format-security"
	- GtkDialog: disabled use-header-bar property untill Glade supports GtkHeaderBar
	- Fixed bug in numeric property editors (Box size)

============
Glade 3.18.0
============

	- Added License property to Glade project
	- Added realtime preview for custom CSS
	- Added support for previewing templates
	- glade-previewer added --slideshow option
	- Fixed Bug 702314 "Cancelling an Add Parent action is destructive"
	- pango attribute editor: don't write on cancel for color/font (Timm Bäder)
	- Fixed bug 711568 "[PATCH] glade crashes upon startup" (thanks to Lubomir Rintel)
	- Fixed Bug 712289 "Glade silently fails to open malformed ui file"
	- Sort object dependancy before saving using a topological sorting algorithm
	- Fixed Bug 709609 "[PATCH] Change way of sorting before writing XML output."
	- Fixed Bug 711858 "editing glade project results in long CPU usage spikes after upgrading to 3.16 and GTK+3.10"
	- Fixed <requires> tag output
	- Fixed cellrenderer model column combobox chooser.
	- Fixed issue with numeric property editors.
	- Restored shortcuts function in workspace.
	- Added new jhbuild based bundling system for 64bit linux bundles. (Tristan Van Berkom)
	- Bug 720585 - Fix order of customized property output.
	- gladeui: fix a pair of printf security problems (Ryan Lortie)
	- Added Registration & User Survey Dialog in Help menu
	- Fixed bug 723819 "Correct bounds checking for design view highlight" (Chris Johns)
	- Fixed bug #721098 "Anjuta hangs when opening project"
	- GtkGrid: Don't save width/height at their default values (Kalev Lember)

============
Glade 3.16.0
============

	- Added AppData for gnome-software to pick up glade
	  Fixes bug 708641 "Please include an AppData file"

============
Glade 3.15.4
============

	- Fixed bug when copying a button with custom content.
	- Added workaround for Bug 625867 "RadioButton information lost on cut+paste, add/remove parent, etc"
	- Fixes bug that prevented the runtime object to show the right pixbuf when copying a GtkImage.
	- Fixed Bug 679079 "Glade changes the "homogenous" packing property of toolbar buttons to "yes""
	- Improved pango text integer attributes editors. This should be enough to close Bug 679006
	  "The "size" attribute for labels only accepts integer values (not strings like "larger")"
	- Fixed bug 643923 "Should not use markup for GtkFrame's label"
	- Fixed bug 584381 "Saving as an existing file name except the extension overwrites without confirmation."
	- Fixed Bug 652655 "Setting entry on combobox moves the widget"
	- Fixed Bug 706304 "Python plugin broken by over-zealous version check" Bumped pygobject version to 3.8.0
	- Fixed regresion that prevented loading extra catalog path at init time.

============
Glade 3.15.3
============

	- Add man pages bug 703013 (Matthias Clasen)
	- Fixed bug #700730 - Weird windows showing up when a dock is moved while editing a GtkBuilder file
	  (Sébastien Granjoux)
	- Double click on a toplevel border select the widget even if there is a child selected.
	- Support document level comments present before the root element.
	- Save glade version used to create the file in a comment.
	- Add GtkRevealer to the Gtk+ catalog (Timm Bäder)
	- Add GtkListBox support (Kalev Lember)
	- Added GtkOverlay support
	- Improved Drag&Drop support, made inspector a drag source
	- Added GtkApplicationWindow basic support
	- Added GtkSearchEntry icons
	- Fix autogen with latest gnome-common bug 706832 (Seán de Búrca)
	- Fix a few typos bug 707173 (Christian Kirbach)
	- Fixed Bug 703621 - Signals treeview: click on user data moves the selected row below (Miguel Azevedo)

============
Glade 3.15.2
============
	- Add GtkPlacesSidebar to GTK+ catalog (Federico Mena Quintero)
	- New icon for GtkMenuButton (Paolo Borelli)
	- GTK+ catalog version now bumped to 3.10, include new translatable enumeration values
          and updated new versions and deprecations
	- Added --enable-debug option and some debug flags to be set with GLADE_DEBUG environment variable
	- Enable word wrapping in combo boxes (used to edit enumeration properties)
	- Split up the GTK+ plugin into mini source files, each one implementing it's own widget adaptor
	  code (instead of one huge glade-gtk.c file)
	- Fix GtkIconFactory sources editor (was very broken)
	- Allow setting the "id" attributes of items set in a GtkComboBoxText
	- Avoid calling gtk_stock_list_ids() when gdk_display_get_default() is NULL, allows GIRs to
	  build on some build machines.
	- Avoid updating the inspector treeview if the same project is set twice (Marco Diego Aurélio Mesquita)
	- Escape key cancels a query dialog instead of approves creation of the new widget
	- Many minor bugs and random crasher bugs also fixed
	- Alsmost all widget types have their own custom editors now

============
Glade 3.15.1
============

	- Much UI fixing and refactoring (Juan Pablo Ugarte)
	- Added new --css and --screenshot options to glade-preview (Juan Pablo Ugarte)
	- Fix main window shortcuts (bug 695866 Juan Pablo Ugarte)
	- Implemented Project Properties dialog with Glade as a composite tempalte (Juan Pablo Ugarte)
	- Support editing the GtkWidget:name property (useful for CSS theming)
	- Improved project inter-widget dependancy calculation and project serialization ordering,
	  object output ordering (and signal ordering) is now consistent and sorted.
	- GtkButton: response-id for dialogs is now optional (allowing adding dialog buttons that
          have no dialog response)
	- GtkImage: Support the new "resource" property
	- GTK+ catalog updated to cover widgets in GTK+ 3.8
	- Now show warnings in the UI for deprecated properties and signals
	- Now show warnings in the Inspector view if any deprecated widgets, signals
	  or properties are used (or if anything is used which is not available in
	  the project's target version).
	- Optional properties are now always saved if they are enabled, allowing
	  to explicitly set them to the default value (eg. GtkWidget:hexpand/vexpand)
	- Inspector search entry: Restore completions to work nicely again and filter
	  the treeview with a search-in-text algorithm.
	- Inspector: Add a feature to expand-all
	- Property editor title-bar is now optional in the View menu
	- Fixed many deprecation warnings in Glade's compile
	- Added Glade's first 2 ever unit tests
	- Fixed Devhelp doc search for properties (Juan Pablo Ugarte)
	- Make Drag'n'Drop work on regular clicks without entering Drag Mode
	  and restored old Drag/Resize functionality when SHIFT is pressed (Juan Pablo Ugarte)
	- Improved Drag/Resize which has been rather broken for a while
	- Added Autosave and Automatic backup of previous file features, configurable
	  in Glade's preferences Dialog
	- Support Composite GtkBuilder template editing (mark a toplevel GtkWidget as
	  the "composite template" widget in the Project Properties dialog or
	  property editor).
	- Support editing of the project domain in the project properties dialog (Juan Pablo Ugarte)
	- Properties in the Project Properties dialog are now undoable
	- GladeSignalEditor: Automatically expand rows which have signal callbacks assigned when
	  loading a widget
	- Add options to decide what types of warnings should be presented at project save time,
	  configurable in Glade's preferences dialog.
	- Added new property editor components GladePropertyLabel, GladePropertyShell and
	  GladeEditorSkeleton, allowing us to create custom property editors using Glade.
	- Add "Grid" option to "Add parent" menu (Dmitrijs Ledkovs)
	- Added Gladeui catalog for IDE's and embedders to design Glade frontends with Glade
	- Added private catalog to allow the GTK+ plugin to embed editors that it provides
	- Added new GladeEpropCheck boolean property editor, to be used in some cases for
	  boolean properties.
	- Added new adaptor methods GladeWidgetAdaptor->write_widget_after() and
	  GladeWidgetAdaptor->destroy_object()
	- Automatically generate gladeui's enum types with glib-mkenums
	- Modified properties now show up in italic letering instead of bold, bold
	  lettering is reserved for title labels in custom property editors.
	- New components that now use GtkBuilder Composite Templates (and have had
	  a basic review and rework of their UIs): GladePreferences (Glade's preferences
	  dialog), GladeEditor (the property editor), GladeProjectProperties (the project
	  properties dialog) and custom property editors: GladeActivatableEditor,
	  GladeButtonEditor, GladeEntryEditor, GladeImageEditor, GladeLabelEditor, GladeWidgetEditor
	- And... many various bugfixes and UI fixes by Juan Pablo and myself.

============
Glade 3.15.0
============

	- Added Drag&Drop support from the palette and within the workspace.
	- Added GtkLevelBar support
	- Property editor UI cleanup
	    Hide Property editor class title
	    Moved clear and info buttom to the action widget of the notebook.
	    Updated atk icon with gnome's accessibility icon.
	    Text entry: Replaced buttons with 3 dots [...] for a secondary edit icon in the entry itself.
	    Removed treeview from flags editor.
	    Do not let every propery input expand if not nescesary.
	    Boolean input: replaced toggle buttons with a switch.
        - Fixed bug #685265 "Excessively Selected for Translation" Daniel Mustieles
	- Fixed bug #688326 "pointer tracking is off" by using every coordinate relative to GladeDesignLayout.
	- Fixed bug #678922 "When editing a label, the cursor is moved to the end after every change."

============
Glade 3.14.0
============

	- Updated GtkAssistant support. Fixed bug #664276
	- Set new property accel-group on action groups to make menu item accel work properly. Fixes bug 684041
	- Do not abort if a project has a uninstantiable or abstract class object instead load it
	  as an object stub and let the user what to do. bug #646259
	- Fixed runtime warning on GladeBaseEditor and GladeSignalEditor dispose methods
	- Do not explicit set window bg as it should be handled by gtk.
	- Sync close-button with the original gedit widget.
	  This way the proper symbolic close icon is used for the button. (Paolo Borelli)
	- Use new documentation infrastructure (Javier Jardón)
	- Added load/save/edit support for <style> <class name="foo"/> </style>, Fixes bug 658035.
	- Fixed Bug #679589 "Use Action Appearance not supported for GTK 2.12 but added to widgets in Glade 3.8.2"
	- Fixed bug #679487 "Huge memory leaks"
	- Fixed bug #679721 "mac-integration: missing 'widget' variable declaration"
	- Added glade_displayable_value_set_disabled() functions to disable GdkModifierType reserved values
	- Added build/mingw-w64 directory with script to cross compile and create windows installer using nsis
	- Fixes bug #675977 "Don't hard-code library search paths"
	- And many others cleanups and fixes

============
Glade 3.13.0
============

        - Implemented Glade UI in glade! (Use GtkBuilder and GResources to build GladeWindow contents)
        - Implemented GladePreferences dialog.
          Fixes bug 588981 "Catalog support in GUI preferences instead of using environment var"
        - Replaced deprecated font and color selection dialogs with font and color chooser dialogs.
        - Added GladeSignalEditor::detail-suggestions signal
        - Use glade_util_get_placeholder_from_pointer() in paste action activate
        - Fixed bug #675395 "Using right click to add a widget over a placeholder do not work as expected every time"
        - Fixed bug #675042 "plugins/gtk+.xml.in: always store GtkButton [x|y]align properties"
        - Added custom style provider to setup GladeDesignView and GladeDesignLayout background color to @base_color
        - Fixed memory leak on GladeSignalEditor::callback-suggestions emison
        - Removed use of lots of deprecated functions

============
Glade 3.12.0
============

        - Implemented GladeSignalEditor::callback-suggestions signal based
          on patch by Marco Diego Aurélio Mesquita, closes bug #667570
          "Implement callback name suggestion on glade-signal-editor"
        - Fixed bug 664912 "GtkGrid assumes 3x3 (edit)"
        - Fixed bug 645340 "Minor string typo" and bug 646366 "non-sense UI string"
        - Fixed bug 669272 "Emit a signal to notify signal activation" by Marco Diego Aurélio Mesquita

============
Glade 3.11.0
============

	- Added GtkSwitch, GtkInfoBar and GtkEntryCompletion support.
	- Implemented inline margins and alignment edit mode.
	  Now it is posible to change widget's margins and alignment using the mouse.

	- Ignore GtkWindow:icon property. Fixes bug #654121
          "workaround gtk segfault: icon on gtkwindow segfault in offscreen"
	- Bump pygobject requisite to pygobject 3. Fixes bug #658667. Ignacio Casal Quinteiro
	- Make GladeProject change gtk target to 3.0 and warn the user if there are
	  any unknown (deprecated) objects.
	  Fixes bug 652673 "Project versions are ignored" and 376628 "Deletes unknown widget nodes."

	- Make documentation parallel installable (bug 646997).
	- Renamed catalog and module environment variables.
	- Properly escape special characters while serializing property values (bug 654609 - Fabien Parent)
	- Fix GladeProject to notify "row-has-child-toggled" (fixes bug 651673).
	- Fixed size groups widget selection (bug 647984 - Benjamin Otte)
	- Avoid crashing if glade-previewer is not installed
	  (bug 650899 - Johannes Schmid)
        - Optimized loading time by not updating progressbar on every loaded object.
        - Update placeholders when a grid child's width or height child
	  properties change.
        - Ensure 'related-action' and 'use-action-appearance' are serialized in the right order.
        - Correctly detect the required devhelp version - Javier Jardón
        - Fixed TreeModelFilter bug #657164
        - Fixed bug #660607 "Warnings when using GtkGrid created in Glade 3.10"
        - Fixed glade-previewer bugs
          #660874 "glade-previewer fails to open UI files without top windows"
          #660872 "glade-previewer crashes on non-existent files"
        - Fixed loading correct application icon (bug 648487 fix by Stéphane Maniaci).
        - Fixed "variable set but not used" warnings (-Wunused-but-set-variable)

============
Glade 3.10.0
============
	- Fixed some glitches in the new workspace - Juan Pablo Ugarte
	- Removed the unwritten user manual from the menus.
	- Added support for GdkRGBA properties
	- Add support for editing the PangoFontDesctiption in GtkLabel attributes
	- Put File->Properties before Quit in the File menu - Frederic Peters
	- Added GObject introspection generation to the build - Pablo Castellano & Alan Knowles
	- Added support for GtkRecentChooserMenu
	- More last minute sealing of the api (privatized some more files).
	- Created the GladePreview object to handle previews and fixed
	  preview related bugs - Marco Diego Aurélio Mesquita
	- Added support for editing GtkGrid
	- Icons now available for all widget classes - Florent Thévenet and some by Dolean Samuel.
	- Cleaned up the palette by removing H/V subclasses.
	- Added support for GtkAppChooser* classes.
	- Migrate from PyGTK to PyGObject introspection-based bindings - Craig Keogh
	- Some refactoring of GladeEditable and custom editors in the backend
	- Added a special "deprecation" graphic to overlay on
	  top of deprecated widget icons.
	- Added high-resolution applicaiton icon - Jakub Steiner / William Jon McCann
	- Refactored the core to automate the management of internal children - Juan Pablo Ugarte
	- Fixed loads of bugs, some fixes by Christopher Aillon,
	  Craig Keogh, Cosimo Cecchi, Juan Pablo Ugarte

===========
Glade 3.9.2
===========
	- Added signal for IDEs to track created signal editors, Johannes Schmid.
	- Stop installing catalog .xml.in files, Emilio Pozuelo Monfort.
	- Fixed various memory leaks.
	- Removed GtkTreeSelection from the palette, it's only available as the internal
	  child of a GtkTreeView
	- Fixed Drag'n'Drop image drawing with cairo for signal editor, Johannes Schmid with
	  help from Benjamin Otte.
	- Fixed crashes and memory leaks in the GladeBaseEditor (the editor used for menu editing
	  and treeview editing and the like).
	- Edit->Preferences is now File->Properties
	- Removed option for project naming policies, object ids in GtkBuilder are always unique
	  across the whole file.
	- Render project widgets in the workspace offscreen, this gives us more power over the
	  widgets (combo boxes can now be selected, seletion drawing is now enhanced),
	  Juan Pablo Ugarte.
	- Added support for GtkComboBoxText with a customized editor to edit the combo box items.
	- Added GtkRecentFilter and GtkRecentManager to the palette, GtkRecentFilter can specify
	  patterns, mime-types and applications for the filtering.
	- Added support to edit patterns and mime-types for GtkFileFilter
	- Added <add-child-verify-function> to the plugin backend, we now use this to better police
	  user activities in Glade (notably, you cannot paste a widget that is not a GtkToolItem
	  to a GtkToolBar or the like).
	- Renamed various things from glade-3/glade3 to 'glade' (the Glade icon, the bugzilla database,
	  the git repository etc, help from Javier Jardón).
	- Glade now uses GtkApplication and is a single instance application.
	- Added support for editing a GtkOffscreenWindow
	- Changed the workspace to now include all toplevel project objects, selecting an
	  object from the inspector causes the workspace to scroll to the selected widget,
	  Juan Pablo Ugarte.

===========
Glade 3.9.1
===========
	- Added accelerator and tooltip-text properties to menu items and toolitems
	  in the menu editor (fixes bug 510083).
	- Fixed crashes in liststore editor.
	- Restored italic insensitive state for the < search widgets > text in the
	  inspector search box.
	- Fixed glade.desktop.in.in file to refer to the new 'glade' exec name
	  (fix by Emilio Pozuelo Monfort)
	- Added support for editing GtkToolPalette along with a special tool palette editor.
	- Make GtkToolBar:icon-size an optional property generally set by the theme/settings
	  (like GtkToolBar:toolbar-style property).
	- Removed global selection list from glade-utils.[ch], now all selection is controlled
	  by the relevant project
	- Removed glade_util_class_implements_interface() in favor of g_type_is_a() (closes bug 455734,
	  based on original patch from Juan Pablo Ugarte).
	- Applied patch by Sergio García Lobo to fix bug 487656 and provide mnemonic key access to
	  "Text beside icons" palette option.
	- Added idle function to raise the undocked windows at startup time, closes bug 475421.
	- Fix possible crash when saving new project. bug 622635, fix by Martin Schlemmer.
	- Fixed crash when user performs Drag'n'Drop of < enter column here > and no columns are
	  yet added (bug 633943).
	- Fixed use of uninitialized variables in warning messages, bug 634325, fix by Alex Merry.
	- Set some default HIG values for widgets as per bug 349447.
	- Make query dialog come with a "Create" button instead of an "OK" button, closes hig bug 503621.
	- Added GtkTextTagTable editor, now GtkTextTag can be added to GtkTextTagTable.
	- Made all GdkColor type properties optional, closes bug 457969.
	- Fixed add/remove parent context menu actions so that they work with parentless widget
	  references (i.e. you can add a parent to a GtkToolItemGroup's label widget
	  or a GtkButton's image widget, or remove the parent of a child of a label-widget, etc).
	- Expose internal GtkTreeSelection child of GtkTreeView so that "changed" signal
	  can be connected to. Fixes bug 383766.
	- Included Johannes Schmid's new signal editor work, the GladeSignals are now available
	  via a GtkTreeModel implementation, this does not effect the UI much but allows signals
	  to be Drag'n'Dropped from Glade's signal editor to Anjuta somewhere.
	- Restored GtkFixed/GtkLayout background pattern.
	- Restored old GladePlaceholder background pattern.
	- Fixed mismatching PangoAttributeType with GType, closes bug 597045.

===========
Glade 3.9.0
===========

	- General build fixes for building with GTK+ 3.0, including patches from Johannes Schmid,
	  Matthias Clasen, Javier Jardón and Juan Pablo Ugarte.
	- Included the new Preview feature by Marco Diego Aurélio Mesquita.
	- Various leaks and crashes fixed.
	- GladeWidget becomes GInitiallyUnowned, refcounting improved for project dispose cycles.
	- Handle combo-box entry child properly (bug 581580).
	- Fixed crashes when textview's buffer is deleted, fix by Martin Schlemmer, bug 609748.
	- Restored property order of project objects at save time (glade files no longer container
	  irrelevant diffs).
	- Hide editor properties when the property is not available on the widget, bug 585299,
	  fix by Marco Diego Aurélio Mesquita.
	- Fixed makefiles as per bug 521713 (patch initially by Daniel Macks).
	- Fixed mixups of properties vs packing properties (bug 637475).
	- Fixed class header of GladeEditor to update when widgets unload (patch by
	  Marco Diego Aurélio Mesquita, bug 637541).
	- Fixed particalarly nasty crasher bug when loading/saving treestore column definitions,
	  special thanks goes to Benjamin Otte, bug 637563.
	- Add progress bar to notebook tab of currently loading project (now the whole UI doesnt
	  jam up while loading a big project).
	- Fixed notebook tab style to use the new CSS stuff.
	- Removed widgets that are not available in 3.0
	- Completely removed Libglade support
	- Removed GladeClipBoardView completely
	- Removed GladeParameter obsolete code
	- Fixed editor labels to use natural word wrapping
	- Drop GtkTables in editors in favor of GtkGrid
	- Added custom editor for editing GtkActionGroup and managing child actions
	- Ran 'indent' on source base, new Glade coding style more similar to GTK+ style
	- Removed boolean "fixed" catalog attribute, instead <create-widget-function> can
	  be used to specify a derived GladeWidget to be used in the runtime.
	- Use locale-independent strtod & dtostr. Fixes bug 616787, fix by Christian Persch.
	- Applying patch to allow better builds on win32, patch by Dieter Verfaillie, bug 634978.
	- Fixed loaded state of use-action-appearance so that it always
	  loads as FALSE if there is no "related-action" at load time (closes bug 582882).
	- Sealed entire core API, libgladeui-2 will be ABI stable after 3.10 release.
	- Removed GladeApp::update-ui signal, active-project, selection handling and implied
	  commands, everything now must be done in context of a GladeProject.
	- Optimized GladeEditor to load a widget faster by keeping all the cached pages in internal
	  vboxes and not remove/adding them but just hide/showing them (improves object selection
	  time).
	- Optimized frontend to load one palette per project, verifying the palette for version
	  information when the related project is set costs around 1 second, this is now only
	  experienced when the target version is changed in the project prefs dialog.


===========
Glade 3.7.1
===========
	- Changed "Close without saving" acelerator key from 'c' to 'w', (Aaron Brown, bug 612538)
	- Save Glade files with UTF-8 encoding (Christian Persch, bug 596205)
	- Save maximized window state of all windows in session data (Marco Diego Aurélio Mesquita, bug 607670)
	- use g_timeout_add_seconds() (Javier Jardón, bug 581255)
	- Fixed signal name serialization in GtkBuilder format to use '-' instead of '_' (bug 600031)
	- Disable orientation properties completely and disregard them wherever they cause breakage
	  (Federico Mena Quintero, bug 594231)
	- Now print a summery of all missing icons at startup instead of a warning for each missing icon
	- Fixed some remaining crashers introduced by recent GSEAL patches
	- Integrated GtkToolPalette as the internal implementation of Glade's palette (bug 613956).
	- Added tooltip to palette (bug 558983)
	- Revamped internal treeview support, less warnings and better refresh of workspace when
	  editing cell renderer attributes and liststores.
	- Glade now loads/saves the "swapped" <signal> attribute.
	- Signal editor revamped to now:
	   o show documentation links
	   o show warning icons for version mismatches
	   o edit "swapped" attribute
	   o edit the user-data object using an object selection dialog.
	   o now the signal editor is a proper widget-class (Johannes Schmid, bug 618020)
	- Disallow adding of non-scrollable widgets to scrolled windows (now an informative
	  popup comes up instead).
	- Fixed hangs in menu/treeview editors (Marco Diego Aurélio Mesquita, bug 609612)
	- Changed the old glade-cell-renderer-button for a new activatable pixbuf renderer
	  glade-cell-renderer-icon.[ch].
	- Added support to add GtkActions to GtkActionGroups
	- Added support to edit the <accelerator> for an action when in a group.
	- Added notebook tabs to the Glade frontend with informative labels (per open project).
	- Stop showing preferences dialog at startup time (bug 574095)
	- GladeProject now implements GtkTreeModel and GladeInspector view saves lots of code (Johannes Schmid)
	- Allow destruction of GladeApp object (Johannes Schmid, bug 618468).

===========
Glade 3.7.0
===========
	- Fixed loading state of assigned GtkTreeModels of GtkCellRendererCombo objects (bug 566928).
	- Fixed crasher while copying internal widgets (bug 595156)
	- Support silent build when using automake >= 1.11 (Javier Jardón)
	- Proper ordering of GtkAdjustment properties in glade files (bug 578484).
	- Refactoring work for GSEAL (Javier Jardón)
	- Avoid collapsing commands when a project is freshly saved (this fixes a false "unmodified"
	  state after changing the same property before and after project save) (Marco Diego Aurélio Mesquita)
	- Allow litteral strings as column type definitions in GtkTreeStores (closes bug 597059).
	- Updated Glade GTK+ catalog info to include deprecations, new properties and signals since 2.18 and 2.20
	  and some translatable strings (brought to you also in part by Johannes H. Jensen for some translatable
	  strings and Javier Jardón for some deprecations), some new objects this consequently adds:
	  o GtkEntryBuffer
	  o GtkSpinner
	  o GtkCellRendererSpinner
	- Fixed crasher editing some data types in the liststore data editor (bug 608011).
	- Enhanced the GtkEntry editor to allow the user to chose between the "text" and the "buffer" exclusively.

===========
Glade 3.6.7
===========
	- Sync up remaining properties at load time (fixes use-action-appearance property
	  and any other unmentioned property states at load time, also unvails broken
	  orientation default value in GTK+, bug 587256).
	- Fixed glitches with use-action-appearance at save time.
	- Make stock button labels save as non-translatable automatically (bug 352446).
	- Fixed crashes when handling GtkTextView in GtkBuilder format.
	- Fixed crashes with editable treeview column types (bug 586715).
	- Detect correct modifiers and buttons to spawn a context menu in a platform
	  independant way (bug 587128).
	- Added --enable-mac-bundle configure argument to resolve paths correctly
	  when building bundles on osx.

===========
Glade 3.6.6
===========
	- Fixed missing image dialogs for packing properties
	- Make assistant page-titles translatable (bug 503146)
	- Make GtkMessageDialog texts translatable (bug 586063)
	- Fixed obscure crash at project load time (James Liggett - bug 585860)
	- Migrated to use non-deprecated symbols from glib/GTK+ (Sam Thursfield - bug 572756)
	- Introspect lowest GTK+ project dependancy when loading files with missing
	  versioning info (bug 586046).
	- Fixed runtime path resolutions on osx (bug 586551).

===========
Glade 3.6.5
===========
	- Quartz build support and use ige-mac-integration to setup the menubar
	  as an optional build dependancy.
	- Fixed dissapearing dialogs on ESC (bug 582559)
	- Really fixing widget naming policies again, this time I hope it sticks (bug 580745)
	- Fixed relocated link problems with python plugin build (bug 582982, patch by Arun Raghavan)

===========
Glade 3.6.4
===========
	- Check project naming policy at add_object() time (bug 580745).
	- Fixed bug loading and saving icon sources (Juan Pablo Ugarte)
	- Fixed sizes of fixed/layout children at load time (bug 584334).
	- Enabled popup menus via Apple key for osx (lame but functional).

===========
Glade 3.6.3
===========
	- Maintain current widget selection during commits of related-action
	  (was causing crashes when the selection changed as a result of a commit, bug 578869)
	- GtkButton only accepts real stock *items* and not icons (to use an icon, use a GtkImage
	  with an unrestricted stock icon)
	- Added documentation on integrating Python widgets (Juan Pablo Ugarte)
	- Fixed output format for GtkLabel attributes (bug 579793, patch by Davyd Madeley).
	- Removed hard coded size request to palette (Bug 579624).
	- Made Atk proxy objects always have unique names (bug 579565).
	- Removed buggy query dialog from notebook creation (bug 578727).

===========
Glade 3.6.2
===========
	- Fixed missing properties/attributes when serializing GtkWindows (bug 578211)
	- Fixed loading state of cellrenderer attributes (whether to use attribute or property
	  directly, bug 566928).

New and updated translations
============================
	- Goran Rakic (sr, sr@latin)
	- Jorge Gonzalez (es)

===========
Glade 3.6.1
===========
	- Fixed win32 crasher (bug 575206)
	- Fixed crasher on internal widget selection
	- Fixed libglade regression (libglade needs specific
	  ordering of properties, atk props, signals and accelerators)
	- Fixed MSYS/MinGW build (Bug 576851 – Damon Register)
	- Disable loading and displaying of 'data' property on GtkTreeStore
	  (only GtkListStore understands the 'data' construct).
	- Properly initialize a GValue on stack (bug 577822 - Felix Riemann)

New and updated translations
============================
	-  Petr Kovar, Andre Klapper (cs)
	-  Djihed Afifi (ar)

===========
Glade 3.6.0
===========
	- Fixed bugs 574260, 573513, 573453, 574706, 567809 (Juan Pablo Ugarte, Ryu Jinno, myself)

New and updated translations
============================
	- Kostas Papadimas (el)
	- Claude Paroz (fr)
	- Kenneth Nielsen (da)
	- Ani Peter (ml)
	- Ignacio Casal Quinteiro (gl)
	- Krishnababu K (te)
	- Gintautas Miliauskas (lt)
	- Duarte Loreto (pt)
	- Manoj Kumar Giri (or)
	- Petr Kovar (cs)
	- Milo Casagrande (it)
	- Theppitak Karoonboonyanan (th)
	- Philip Withnall (en_GB)
	- Daniel Nylander (sv)
	- Nickolay V. Shmyrev (ru)
	- Ilkka Tuohela (fi)
	- Christian Kirbach, Hendrik Richter (de)
	- Baris Cicek (tr)
	- Philip Withnall (en_GB)
	- Raivis Dejus (lv)
	- Changwoo Ryu (ko)
	- Jorge Gonzalez (es)
	- Daniel Nylander (sv)
	- Kenneth Nielsen (da)
	- Gabor Kelemen (hu)
	- Inaki Larranaga Murgoitio (eu)
 	- Clytie Siddall (vi)
	- Og Maciel, Jonh Wendell (pt_BR)
	- Claude Paroz (fr)

===========
Glade 3.5.7
===========
	- Added GladeDesignLayout::widget-event signal. Patch by Pavel Kostyuchenko (bug 542337).
	- GObjectify signal editor and allow custom signal editors. by Pavel Kostyuchenko (bug 540691).
	- Make virtual properties in GTK+ 2.16 in order to support running from GTK+ 2.14 and targetting 2.16
	- New activatable editor to handle activatable properties in smart ways.
	- Fix markup in confirm close dialog, patch by Felix Riemann (bug 567450).
	- Marked use-stock property from imagemenuitem to be save-always (bug 568064).

New and updated translations
============================
	- Updated de: Andre Klapper, Hendrik Richter
	- Updated es: Jorge Gonzalez, Jorge González
	- Updated fi: Ilkka Tuohela
	- Updated he: Yair Hershkovitz, yairhr@gmail.com
	- Updated ko: Changwoo Ryu
	- Updated pt_BR: Jonh Wendell

===========
Glade 3.5.6
===========
	- Handling of new entry properties (bug 567454)
	- Added filechooser dialog to pixbuf properties

New and updated translations
============================
	- Updated es: Jorge Gonzalez, Jorge González
	- Updated nb: Kjartan Maraas
	- Updated pt_BR: Og Maciel, Igor Pires Soares

===========
Glade 3.5.5
===========

	- Model data editor improvments (sequential editing mode, better key navigation)
	- Treeview editor revamp, few crashers fixed
	- Few crashers fixed #525839, #522542
	- Expand inspector treeview by default
	- Many more bug fixes including #533471

New and updated translations
============================
	- Updated es: Jorge González, Jorge Gonzalez  <jorgegonz@svn.gnome.org>

===========
Glade 3.5.4
===========
	- Added short readable versions of new enum/flag values
	- Fixed a crasher in the store editor
	- Focus always stays in the store editor when editing cells get cancelled
	- Better resizing in editors (property names/warnings expand, inputs dont)
	- Cleaned up gtk+ includes (Maxim Ermilov - bug 561260)
	- Some code now available under LGPL

===========
Glade 3.5.3
===========
	- Support for GtkIconFactory
	- Support for GtkAccelGroup
	- Support for GtkSizeGroup
	- Support for GtkListStore/GtkTreeStore (some code by Juan Pablo Ugarte)
	- Support for GtkTreeViewColumn, GtkTreeView, GtkIconView and GtkComboBox as GtkCellLayout.
	- Support for GtkCellRenderer derivatives
	- GtkBuilder support for GtkMenu hierarchies
	- New all in one treeview editor, for treeviews combo boxes and icon views
	- Properties and widgets now show warnings in the editor when they have mismatched versions
	- Palette items are insensitive when widgets are unavailable and show warnings when they are deprecated.
	- Text wrapping in property labels (Pavel Kostyuchenko)
	- Editor widget beefed up with icon and class header.
	- Simplified accelerator editor
	- Save window pane positions in session (Juan Pablo Ugarte)
	- New pango attributes editor for GtkLabel:attributes
	- All widgets/properties in glade files are now saved in the same order
	  (GtkTable part: bug 422823 - Pavel Kostyuchenko, and bug 422823)
	- Fixed core to permit working with non GtkWindow toplevel objects/widgets (bug 532636 - Pavel Kostyuchenko)
	- Palette now allows doc searches
	- Notebooks switch pages to display the selected widget
	- Added undoable project conversion routines implemented by catalog plugins
	- Object selection dialogs can now create widgets when a type is specified by the catalog
	- Support GtkBuilder "context" attribute for i18n data (translatable properties)
	- Support for naming your widgets unique across the project or unique across toplevels.
	- Now you can add menus inline inside the toolbar editor.
	- No more copying resource files around, now you can set your local resource path in
	  project preferences and use relative/fullpaths in resource properties (i.e. GdkPixbuf properties
	  and the like).
	- No more context help mode with buttons, you can get property level help (and clear value) with a context menu
	- Optimized load routine significantly.
	- Added GladeEditable interface to layout custom pages for property editors, implemented many
	  custom editor layouts.
	- Now you can edit widgets separately from the rest of the project
	- menu/toolbar/treeview editor no longer a modal dialog.
	- Added <search widgets> entry with completion/filter to the inspector widget.
	- Added most of the new needed icons (Mike Gratton - bug 561979, Juan Pablo Ugarte).
	- Simplified and improved stock-id properties to allow use of custom icons from factories.
	- Fixed input dialog crasher (Juan Pablo Ugarte - bug 543314)
	- Commands now collapse to nothing - Pavel Kostyuchenko
	- Fixed boxed value comparisons by way of comparing unique strings
	  from the plugin (Juan Pablo Ugarte - bug 528511)
	- Fixed project modified state flag glitches (Pavel Kostyuchenko - bug 532017).
	- Prevent hangs in anjuta (Pavel Kostyuchenko - bug 531585).
	- Fixed boldness/italicness in varios treeviews
	- Objects and resource property fields are updated correctly (bug 542335 - fix by Pavel Kostyuchenko)
	- Update loaded assistant pages properly (bug 540531 - fix by Antti Kaijanmäki)
	- Silently ignore unrecognized signals in glade file instead of aborting
	  (bug 533728 - fix by Pavel Kostyuchenko)
	- Worked around special child type naming discrepencies between formats from the plugin side
	  (bug 533217 - fix by Pavel Kostyuchenko)
	- response-id now only available for buttons that are in the action area of dialogs (bug 464502)
	- Fixed displayable values (bug 556452), now they are available in the plugin too.
	- Misc bugfixed by Richard Hult, Andreas Henriksson, Vincent Geddes, Claude Paroz, Pavel Kostyuchenko,
	  Eli Collins, Christian Persch, Theppitak Karoonboonyanan, Kjartan Maraas, Michael Gratton and me.

New and updated translations
============================
	- ar: Anas Afif Emad, Djihed Afifi
	- bg: Yavor Doganov, Alexander Shopov
	- da: Ask Hjorth Larsen
	- de: Christian Kirbach
	- en_GB: David Lodge, Philip Withnall
	- es: Jorge González, Jorge Gonzalez
	- et: Ivar Smolin
	- fi: Ilkka Tuohela
	- fr: Robert-André Mauchin
	- gl: Ignacio Casal Quinteiro
	- gu: Sweta Kothari
	- he: yairhr@gmail.com, Yair Hershkovitz
	- hi: Rajesh Ranjan
	- hu: Gabor Kelemen
	- it: Andrea Zagli
	- ko: Changwoo Ryu
	- ml: Hari Vishnu
	- mr: Sandeep Shedmake
	- nl: Vincent van Adrighem
	- oc: Yannig Marchegay, Yannig Marchegay (Kokoyaya)
	- pl: Tomasz Dominikowski
	- pt: Duarte Loreto
	- pt_BR: Igor Pires Soares, Fabrício Godoy
	- ru: Yuriy Penkin
	- sr.po, sr@latin: Goran Rakić
	- sv: Daniel Nylander
	- th: Theppitak Karoonboonyanan
	- tr: Baris Cicek
	- vi: Clytie Siddall
	- zh_HK: Chao-Hsiung Liao
	- zh_TW: Chao-Hsiung Liao, Abel Cheung

===========
Glade 3.5.2
===========
	- oops, was parsing booleans as doubles, fixed bugs with
	  builder-unsupported and deprecated.

===========
Glade 3.5.1
===========
	- Added versioning support, you can always chose the target version of
	  your project starting with gtk+ 2.8 - a project preferences dialog has
	  been added where you can switch your format, switch your target version
	  and test for incompatabilities. incompatability error dialogs are also
	  launched on save as. Target versions are saved to the glade file;
	  TODO: patch GtkBuilder to test the required gtk+ version from
	  <requires lib="gtk+" version="2.8"> and at least warn, also let
	  third party widget developers test thier own versions using builder
	  (all new catalog tags and properties are also documented).

===========
Glade 3.5.0
===========
	- Resurrected GtkScaleButton and GtkVolumeButton
	- We finally have Vincent Geddes's icon choser dialog
	  (was skipped before because of string changes)
	- Not allowed to have duplicate widget names anymore (bug 442860)
	- Now the first widget in a project shows up automatically
	  when opening the project.
	- Old parser was trashed and rewritten from the ground up.
	- New plugin support for read_widget() and write_widget(), also
	  create_eprop() which allows the plugin to create widgets to
	  edit properties in the editor (accelerators are edited from
	  the plugin now for instance).
	- Dual file format support available, its a beginning, you dont
	  get any of the GObjects that GtkBuilder supports but all widgets
	  you were formerly using with glade can now be loaded/saved in
	  builder format.
	- Api reference docs for embedders and widget authors ressurected
	  after 2 years, concerning integrating widgets, the docs are
	  practically rewritten.

New and updated translations
============================
	- Priit Laes (et)
	- Laurent Dhima (sq)
	- Baris Cicek (tr)
	- Alexander Shopov (bg)

===========
Glade 3.4.3
===========
	- Backed out GtkScaleButton and GtkVolumeButton since
	  they introduced strings.


===========
Glade 3.4.2
===========
	- Port to gtk 2.12 tooltips API. Bug #500947. - Christian Persch
	- Atk Relations bug fix
	- Added GtkVolumeButton and GtkScaleButton widgets (Ross Burton)
	- Misc fixes 477025, 509128, 388869, 504603, 495853, 506713, 511651,
	  472555, 493418 by Cosimo Cecchi, Yang Hong, Ivan Baldo, Vincent Geddes,
          Juan Pablo Ugarte, Tristan Van Berkom

New and updated translations
============================
	- Kjartan Maraas (nb)
	- Yuri Kozlov (ru)
	- Stéphane Raimbault (fr)
	- Gintautas Miliauskas (lt)
	- Jovan Naumovski (mk)
	- Luca Ferretti (it)
	- Gabor Kelemen (hu)
	- Claude Paroz (fr)
	- Jonh Wendell (pt_BR)
	- David Lodge (en_GB)
	- Ignacio Casal Quinteiro (gl)
	- Gil Forcada (ca)
	- Ilkka Tuohela (fi)
	- Hendrik Brandt (de)
	- Duarte Loreto (pt)
	- Theppitak Karoonboonyanan (th)
	- Maxim Dziumanenko (uk)
	- Yair Hershkovitz (he)
	- Baris Cicek (tr)
	- Clytie Siddall (vi)
	- Yannig Marchegay (oc)
	- Daniel Nylander (sv)
	- Djihed Afifi (ar)
	- Jorge Gonzalez (es)
	- Takeshi AIHANA (ja)


===========
Glade 3.4.1
===========

	- Crash in Glade Interface Designer: Clicked the GtkInputDial... (bug 480495) - Juan Pablo Ugarte
	- Glade3 hangs when loading certain projects containing GtkAssistants (bug 495057) - J. Ali Harlow
	- Fix options context summary (bug 500940) - Christian Persch
	- Use gtk_widget_get_action (bug 500943) - Christian Persch
	- Icon Theme search path is incorrect for win32 (bug 469854) - Martin Schlemmer
	- Doesn't build on ia64 (bug 499623) - Josselin Mouette
	- Activating "Add Parent" on an internal widget component causes crah (bug 503955) - Juan Pablo Ugarte
	- GtkImage/GdkPixbuf porps misc fixes - Juan Pablo Ugarte

New and updated translations
============================
	- Kjartan Maraas (nb)
	- Matej Urbančič (sl)
	- Ivar Smolin (et)
	- Djihed Afifi (ar)
	- Baris Cicek (tr)
	- Ignacio Casal Quinteiro (gl)
	- Urbančič Matej (sl)
	- Ivar Smolin (et)
	- Changwoo Ryu  (ko)
	- Takeshi AIHANA (ja)
	- Leonardo Ferreira Fontenelle (pt_BR)

===========
Glade 3.4.0
===========

New and updated translations
============================
    - Priit Laes (et)
    - Jorge Gonzalez (es)
    - Ilkka Tuohela (fi)
    - Ignacio Casal Quinteiro (gl)
    - Daniel Nylander (sv)
    - Adam Weinberger (en_CA)
    - Takeshi AIHANA (ja)
    - Raphael Higino (pt_BR)
    - Theppitak Karoonboonyanan (th)
    - Gabor Kelemen (hu)
    - Duarte Loreto (pt)
    - Kenneth Nielsen (da)
    - Clytie Siddall (vi)
    - Alexander Shopov (bg)
    - Gintautas Miliauskas (lt)
    - Jovan Naumovski (mk)
    - Kjartan Maraas (nb)
    - Maxim Dziumanenko (uk)
    - Alessio Frusciante (it)
    - Hendrik Richter (de)
    - Danishka Navin (si)
    - Jamil Ahmed (bn)
    - Claude Paroz (fr)
    - Djihed Afifi (ar)
    - David Lodge (en_GB)
    - Nickolay V. Shmyrev (ru)
    - Artur Flinta (pl)
    - Gil Forcada (ca)

===========
Glade 3.3.4
===========
    - Moved all gtk-doc stuff outside of the template files (now documentations is
      entirely in the source) - Juan Pablo Ugarte
    - Fixed compilation with gcc 2.95 (bug 461923) - Jens Granseuer
    - Sort the stock icon list alphabetically by locale (bug 454003) - Olivier Delhomme
    - Made glade window not maximized by default (bug 462111) reported by Frédéric Bellaiche
    - Added "expand" and "homogeneous" packing properties to toolbar
      children in the toolbar editor (bug 429409) - Tristan Van Berkom
    - Clipped the signal editor texts to simply say "<type here>" (bug 464505) - Tristan Van Berkom
    - Now saves/restores session data about docking attached state &
      undocked window sizes/positions - Yevgen Muntyan
    - Added themed icon chooser (currently disabled awaiting freeze break approval)
      (bug 359640) - Vincent Geddes
    - Made toolbar-style an "optional" property and fixed glitches around this property
      (bug 382785) - Vincent Geddes

New and updated translations
============================
    - Daniel Nylander (sv)
    - Theppitak Karoonboonyanan (th)
    - Jorge Gonzalez (es)
    - Leonardo Ferreira Fontenelle (pt_BR)
    - Ilkka Tuohela (fi)
    - Sunil Mohan Adapa (te)
    - Takeshi AIHANA (ja)
    - Adam Weinberger (en_CA)
    - Jovan Naumovski (mk)
    - Duarte Loreto (pt)
    - Priit Laes (et)


===========
Glade 3.3.3
===========
    - Add tab labels by default to notebook pages (bug 345438) - Tristan Van Berkom
    - Now child menu items are selectable (fixed event handling for widgets that are
      not in the logical hierarchy, in 3.3.2 this was a crash actually) - Tristan Van Berkom
    - Now we draw selection in g_signal_connect_after (..."expose-event"...) instead
      of queuing an idle timeout.  - Tristan Van Berkom
    - Fixed the UI to be insensitive when no projects are loaded (some widgets were
      sensitive and causing errors) - Tristan Van Berkom
    - Made it possible to declare a widget class in the catalog without giving a real type,
      only automatically derive from a type specified in the catalog (bug 352714) - Yevgen Muntyan
    - Defined environment variables GLADE_MODULE_PATH & GLADE_CATALOG_PATH, catalogs will be
      searched in GLADE_CATALOG_PATH and widget libraries/support modules in GLADE_MODULE_PATH. - Tristan Van Berkom
    - Disable Add/Remove parent actions on GtkToolItem, GtkMenu and GtkMenuItem - Tristan Van Berkom
    - misc bugfixes 459953 460272

New and updated translations
============================
    - Jorge Gonzalez (es)
    - Takeshi AIHANA (ja)
    - Daniel Nylander (sv)
    - Clytie Siddall, Nguyễn Thái Ngọc Duy (vi)
    - Ilkka Tuohela (fi)
    - Artur Flinta (pl)
    - Runa Bhattacharjee (bn_IN)
    - Gabor Kelemen (hu)
    - Matic Žgur (sl)

===========
Glade 3.3.2
===========
    - Bindings work has been moved out into a branch
    - Added toolbar item for "Drag/Resize" mode - Tristan Van Berkom
    - Added history lists to undo/redo buttons - Tristan Van Berkom
    - Current notebook page is more consistant (bug 394382) - Tristan Van Berkom
    - Use gnome-common macros in configure.ac/Makefiles (bug 399134) - Christian Persch
    - Fixed lots of compiler warnings from new macros - Vincent Geddes
    - Added…
jperkin pushed a commit that referenced this issue Jan 4, 2023
[0.17.0] - 2022-11-08
Features
    Add support for nested json syntax, see #217 (@ducaale)
    Add Support for bearer auth in .netrc, see #267 (@porglezomp)
    Support forcing ipv4/ipv6, see #276 (@zuisong)

Other
    Allow building xh using native-tls only, see #281 (@jirutka)
    Warn users when translating --follow + non GET method, see #280 (@jgoday)
jperkin pushed a commit that referenced this issue May 5, 2023
Changelog:

v1.0.27 -- 24 Apr 2023
----------------------
Note: This release is not binary compatible with previous releases. It is source
 compatible.

- BookmarkStorage: allow empty bookmark names (as per spec) (fixes #300)
- MUCRoom: added send( message, subject, StanzaExtensionList ) (fixes #301)



v1.0.26 -- 19 Mar 2023
----------------------
- MUCRoom: init m_session (fixes #293)
- TLSOpenSSL: use system certificates for verification (fixes #292)
- ConnectionTCPServer: compilation fix for musl (fixes #291)



v1.0.25 -- 16 Mar 2023
----------------------
- compile fixes for modern compilers
- Tag: expose internal NodeList for optional XHTML-IM rendering without external
 parser; compile with --enable-xhtmlim (fixes #297)
- enabled/fixed support for TLS 1.3



v1.0.24 -- 14 Jul 2020
----------------------
Note: This release is not binary compatible with previous releases. It is source
 compatible.

- Tag: fixed XML namespace for attribute with empty namespace (fixes #278) (than
ks to drizt72)
- PubSub::Event: add simple ctor (thanks to Daniel Kraft)
- PubSub::Manager: fixed subscription error case handling (thanks to Daniel Kraf
t)
- PubSub: fixed support for instant nodes
- RosterManager: fixed behavior if subscription attribute is absent in roster it
em



v1.0.23 -- 08 Dec 2019
----------------------
- fixed a memory leak in dns.cpp (thanks to Daniel Kraft)
- fixed session management/stream resumption (thanks to Michel Vedrine, François
 Ferreira-de-Sousa, Frédéric Rossi)
- MUCRoom::MUCUser: include reason if set
- ClientBase: fix honorThreadID (first noticed by Erik Johansson in 2010)
- TLSGnuTLS: disabled TLS 1.3 for now, as there are connection issues with it



v1.0.22 -- 04 Jan 2019
----------------------
- TLSOpenSSLBase: conditionally compile in TLS compression support only if available in OpenSSL (fixes #276) (thanks to Dominyk Tiller)
- TLSGNUTLS*Anon: fix GnuTLS test by explicitely requesting ANON key exchange algorithms (fixes #279) (thanks to elexis)
- TLSGNUTLSClient: fix server cert validation by adding gnutls_certificate_set_x509_system_trust() (fixes #280) (thanks to elexis)
- DNS: fix compilation on OpenBSD sparc64 (fixes #281) (thanks to Anthony Anjbe)
- Enable getaddrinfo by default (fixes #282) (thanks to Filip Moc)



v1.0.21 -- 12 Jun 2018
----------------------
- InBandBytestream: error handling corrected
- doc fix: CertInfo::date_from/to set correctly when using OpenSSL



v1.0.20 -- 26 Feb 2017
----------------------
Note: This release is not binary compatible with previous releases. It is source compatible.

- BytestreamDataHandler: added callback for acknowledged packets
- ConnectionTCPClient: compile fix for Win32 (broken in 1.0.19)
- ConnectionTCPClient: no-block fix
- use ws2_32.lib instead of ws_32.lib on Win32



v1.0.19 -- 21 Feb 2017
----------------------
Note: This release is not binary compatible with previous releases. It is source compatible.

- ConnectionTCPServer: cleanup
- lots of compile-time warnings removed
- TLSOpenSSL: made it speak TLSv1.1 and 1.2 again (thanks to Nicolas Belouin)
- added Client State Indication (XEP-0352)
- CertInfo struct: fixed protocol version when using OpenSSL
- TLSOpenSSL: fixed compilation with OpenSSL 1.1.0
- Registration: added Resource Constraint error condition (thanks to elexis1987) (#267)
- ConnectionTCP: fixed some blocking (thanks to Marco Ciprietti)



v1.0.18 -- 10 Nov 2016
----------------------
- TLSOpenSSL: fixed wildcard certificate support (#262)
- Pubsub::Event: fixed potential NULL dereference (#257)
- ConnectionTCPServer: fixed listening on local socket
- Adhoc: fixed memory leak (thanks to Erik Horemans)
- documentation fixes (Adhoc::Plugin, StanzaExtension)
- ConnectionTLS: delete old connection in setConnectionImpl() (thanks to Erik Horemans) and clarify this in the documentation
- Tag: Android compilation fix (thanks to Erik Horemans)
- ConnectionSOCKS5Proxy: improved compatibility (thanks to Erik Horemans)
- util: Android compilation fix (thanks to Erik Horemans)
- Client, ClientBase: avoid 'from' attribute when doing resource binding (#265)
- MUCRoom: allow empty message body if extension is present (#264) (thanks to Tom Quackenbush)
- ConnectionBOSH: initialize 'hold' to 1 to improve compatibility (#238)
- ConnectionTCPServer: actually accept incoming connections
jperkin pushed a commit that referenced this issue Jun 8, 2023
## 3.0.0 - 2023-06-03

⚠️ This release contains some minor breaking changes in the internal API and improvements to the parsing strictness.

**Full Changelog**: <executablebooks/markdown-it-py@v2.2.0...v3.0.0>

### ⬆️ UPGRADE: Drop support for Python 3.7

Also add testing for Python 3.11

### ⬆️ UPGRADE: Update from upstream markdown-it `12.2.0` to `13.0.0`

A key change is the addition of a new `Token` type, `text_special`, which is used to represent HTML entities and backslash escaped characters.
This ensures that (core) typographic transformation rules are not incorrectly applied to these texts.
The final core rule is now the new `text_join` rule, which joins adjacent `text`/`text_special` tokens,
and so no `text_special` tokens should be present in the final token stream.
Any custom typographic rules should be inserted before `text_join`.

A new `linkify` rule has also been added to the inline chain, which will linkify full URLs (e.g. `https://example.com`),
and fixes collision of emphasis and linkifier (so `http://example.org/foo._bar_-_baz` is now a single link, not emphasized).
Emails and fuzzy links are not affected by this.

* ♻️ Refactor backslash escape logic, add `text_special` [#276](executablebooks/markdown-it-py#276)
* ♻️ Parse entities to `text_special` token [#280](executablebooks/markdown-it-py#280)
* ♻️ Refactor: Add linkifier rule to inline chain for full links [#279](executablebooks/markdown-it-py#279)
* ‼️ Remove `(p)` => `§` replacement in typographer [#281](executablebooks/markdown-it-py#281)
* ‼️ Remove unused `silent` arg in `ParserBlock.tokenize` [#284](executablebooks/markdown-it-py#284)
* 🐛 FIX: numeric character reference passing [#272](executablebooks/markdown-it-py#272)
* 🐛 Fix: tab preventing paragraph continuation in lists [#274](executablebooks/markdown-it-py#274)
* 👌 Improve nested emphasis parsing [#273](executablebooks/markdown-it-py#273)
* 👌 fix possible ReDOS in newline rule [#275](executablebooks/markdown-it-py#275)
* 👌 Improve performance of `skipSpaces`/`skipChars` [#271](executablebooks/markdown-it-py#271)
* 👌 Show text of `text_special` in `tree.pretty` [#282](executablebooks/markdown-it-py#282)

### ♻️ REFACTOR: Replace most character code use with strings

The use of `StateBase.srcCharCode` is deprecated (with backward-compatibility), and all core uses are replaced by `StateBase.src`.

Conversion of source string characters to an integer representing the Unicode character is prevalent in the upstream JavaScript implementation, to improve performance.
However, it is unnecessary in Python and leads to harder to read code and performance deprecations (during the conversion in the `StateBase` initialisation).

See [#270](executablebooks/markdown-it-py#270), thanks to [@hukkinj1](https://github.com/hukkinj1).

### ♻️ Centralise indented code block tests

For CommonMark, the presence of indented code blocks prevent any other block element from having an indent of greater than 4 spaces.
Certain Markdown flavors and derivatives, such as mdx and djot, disable these code blocks though, since it is more common to use code fences and/or arbitrary indenting is desirable.
Previously, disabling code blocks did not remove the indent limitation, since most block elements had the 3 space limitation hard-coded.
This change centralised the logic of applying this limitation (in `StateBlock.is_code_block`), and only applies it when indented code blocks are enabled.

This allows for e.g.

```md
<div>
  <div>

    I can indent as much as I want here.

  <div>
<div>
```

See [#260](executablebooks/markdown-it-py#260)

### 🔧 Maintenance changes

Strict type annotation checking has been applied to the whole code base,
[ruff](https://github.com/charliermarsh/ruff) is now used for linting,
and fuzzing tests have been added to the CI, to integrate with Google [OSS-Fuzz](https://github.com/google/oss-fuzz/tree/master/projects/markdown-it-py) testing, thanks to [@DavidKorczynski](https://github.com/DavidKorczynski).

* 🔧 MAINTAIN: Make type checking strict [#](executablebooks/markdown-it-py#267)
* 🔧 Add typing of rule functions [#283](executablebooks/markdown-it-py#283)
* 🔧 Move linting from flake8 to ruff [#268](executablebooks/markdown-it-py#268)
* 🧪 CI: Add fuzzing workflow for PRs [#262](executablebooks/markdown-it-py#262)
* 🔧 Add tox env for fuzz testcase run [#263](executablebooks/markdown-it-py#263)
* 🧪 Add OSS-Fuzz set up by @DavidKorczynski in [#255](executablebooks/markdown-it-py#255)
* 🧪 Fix fuzzing test failures [#254](executablebooks/markdown-it-py#254)
jperkin pushed a commit that referenced this issue Jun 30, 2023
40.0 (2023-06-16)
-----------------

* Add CLI option to render package README. (#271)
* Adapt tests to pygments 2.14.0 (#272)
* Update release process to use Trusted Publishing (#276)
* Replace usage of deprecated `pkg_resources` with `importlib.metadata` (#281)
* Drop support for Python 3.7 (#282), Test against Python 3.11 (#280)
jperkin pushed a commit that referenced this issue Aug 14, 2023
1.58      2023-08-12 10:59:05-07:00 America/Los_Angeles
	* Consorsbank.pm - New module - PR #329
	* Stooq.pm - New module - Issue #203
	* Bloomberg.pm - Changed modules to utilize cookie jar - PR #331 - Issue #324
	* AlphaVantage.pm - Apply currency scaling (GBp -> GBP) when symbol
	  had additional ".X" suffix - Issue #281
	  Fixed check for "Information" JSON usually returned when daily API
	  limit has been reached.
	* YahooWeb.pm - Fixed incorrect pricing for single character symbols
	  and changed URL to get trade date - Issues #314 #319
	* Another fix to the URL in YahooJSON and CurrencyRates/YahooJSON - Issue #318
jperkin pushed a commit that referenced this issue Nov 6, 2023
Overview of changes in gnome-calculator 45.0.1
    * Retagging release

Overview of changes in gnome-calculator 45.0
    * Search provider performance improvements !154, !155, !156 (Christian Hergert)
    * Use numeric font instead of monospace #290 (Robert Roth)
    * Fixed electron-volt unit abbreviation #347 (Robert Roth)
    * Fixed erroneous Joule unit name #348 (Robert Roth)
    * Fixed missing build dependency !157 (Jeremy Bicha)

Overview of changes in gnome-calculator 45.beta
    * Fixed variable and function popover reverse typing #335, #320 (Robert Roth)
    * Better left/right cursor key handling !153 (Seth Falco)
    * Improved toolbar using Adwaita library !151 (Felipe Kinoshita)
    * Flatpak build improvements (Robert Roth)

Overview of changes in gnome-calculator 45.alpha
    * Remember window size #328 !146 (Leonard K, Alice Mikhaylenko)
    * Allow opening Main Menu by pressing F10 !142 !149 (Automeris naranja)
    * Extend bit-shifting limit #306 !143 (J Sory)
    * Added new energy units !143 (J Sory)
    * Added TWD support via Bank of Canada rates #27 !148 (Mário Adriano)
    * Added legal section for exchange rate source attribution (Robert Roth)
    * Added United Nations Treasury exchange rate datasource (Robert Roth)
    * Added Jamaican Dollar currency #291 (Robert Roth)
    * Added Ukrainian hryvnia currency #278 (Robert Roth)
    * Added Nigerian Naira currency #142 (Robert Roth)
    * Changed symbolic icon to C on the clear button #336 (Robert Roth)
    * Dropped VEF currency support #78 (Robert Roth)
    * Use new vala-nightly SDK extension for flatpak (Robert Roth)

Overview of changes in gnome-calculator 44.beta
    * Improved factorization !141 (J. Sory)
    * Number format selection documentation improvements #321 (Robert Roth)
    * Made builtin function descriptions translatable #323 (Robert Roth)
    * Fixed display showing 0 on startup #318 (Robert Roth)
    * Improved button tooltips !132 (sunflowerskater)
    * Added signed int support to programming mode !110 (Erik Wolf)
    * i and e constants updated according to ISO 80000-2:2009 !137 (majjejjam)
    * Help overlay updates !133 (Sabri Ünal)
    * Added preferences shortcut !129 (Sabri Ünal)
    * Destroy dialog after clicking cancel #310 (Jaycee Santos)

Overview of changes in gnome-calculator 43.0.1
    * Fixed appdata versioning (Robert Roth)

Overview of changes in gnome-calculator 43.0
    * Removed old issue tracker references !128 (Jake Dane)

Overview of changes in gnome-calculator 43.rc
    * Fix crash when entering new function name !124 (Nathaniel Russel)
    * Fix source view border !121 (Alexander Mikhaylenko)
    * Flatpak build update !122 (Bartłomiej Piotrowski)
    * Port about window to libadwaita !119 (Christopher Davis)
    * Port to libsoup3 !120 (AppleME)

Overview of changes in gnome-calculator 43.alpha
    * Fixed broken undo/redo #266 (Robert Roth)
    * Make sure variable name definitions work with whitespace too (Robert Roth)
    * Fix translatable strings !116 (Maximiliano)
    * Fixed missing implicit multiplication with variable and root #279 (Robert Roth)
    * meson warning fixes (Robert Roth)

Overview of changes in gnome-calculator 42.2
    * Fixed incorrect history with bits toggling #281 (Robert Roth)
    * Fixed crash when typing in variable popover #282 (Robert Roth)
    * Fixed incorrect libxml usage #283 (Luca Bacci, Robert Roth)

Overview of changes in gnome-calculator 42.1
    * Fixed broken undo/redo #266 (Robert Roth)
    * Removed automatic closing brace addition #271 (Robert Roth)
    * Fixed incorrect percentage symbol precedence handling #236, #275 (Robert Roth)

Overview of changes in gnome-calculator 42.rc
    * Use new gnome post_install script !106 (Bobby Rong)
    * gcalc build fixes (Daniel Espinoza Ortiz)
    * Updated screenshots (Christopher Davis)
    * Set default focus to entry (Robert Roth)

Overview of changes in gnome-calculator 42.beta
    * Fixed build issues with GCI entry controller tests #250 (Robert Roth)
    * Force LTR in history view #252 (Robert Roth)
    * programing mode: Force bit digits to be always LTR #258 (Yosef Or Boczko)
    * Use AdwApplication (Alexander Mikhaylenko)
    * ui: Fix styles !105 (Alexander Mikhaylenko)

Overview of changes in gnome-calculator 42.alpha
    * build: Support flatpak development builds (Óscar Fernández Díaz)
    * build: migrated to GTK4 !98 (Cristopher Davis, Robert Roth)
    * entry: Added currencies completion provider (Robert Roth)
    * entry: Fixed percentage evaluation error #237 (Robert Roth)
    * internal: Moved history view from MathDisplay to MathWindow (Robert Roth)
    * window: set default width for basic and keyboard mode #240 (Robert Roth)
    * buttons: removed destructive action class from clear button #242 (Robert Roth)
    * converter: search support in unit selector, separate conversion category selector #108 (Robert Roth)

Overview of changes in gnome-calculator 41.0
    * Use first translated symbol for conversion with button #219 (Robert Roth)
    * Appdata includes hardware support information (Adrien Plazas)

Overview of changes in gnome-calculator 41.alpha
    * Adaptive preferences window !85 (Adrien Plazas)
    * Fixed currency conversion using convert button #216 (Robert Roth)
    * User interface reworked, adaptive UI !81 (Adrien Plazas)
    * Enlarged calculator icon in help !82 (Sabri Ünal)
    * Code cleanup (Robert Roth)
    * Fixed kilohertz shorthand !87 (scootergrisen)
    * Fixed donation link !88 (René Genz)
    * Added support using calculator without currency conversion for privacy !89 (Ray Strode)
    * Added support for function description of custom functions using @ !90 (Martin Jirku)

Overview of changes in gnome-calculator 40.rc
    * Resize window after switching mode !78 (joshas)
    * Fixed compilation warnings (Robert Roth)
    * Support offline currency conversion tests #208 (Robert Roth)
    * Use official unit on conversion button click #207 (Robert Roth)
    * Fixed temperature unit typos #211 (Robert Roth)
    * Ellipsize conversion labels #17 (Robert Roth)
    * Added Ctrl+Delete shortcut for clearing the current equation #187 (Robert Roth)
    * Allow multiple decimal points #166. #5 (Robert Roth)
    * Added Ctrl+O shortcut for degrees symbol (Robert Roth)
    * Use gtk-sourceview 4.8 !80 (Robert Roth)

Overview of changes in gnome-calculator 40.beta
    * Fixed CI build (Robert Roth)
    * Fixed issues with initial loading of currencies (Robert Roth)
    * Rework currency retrieval preparing for currency provider plugins (Robert Roth)
    * Fixed commandline conversions #33 (Robert Roth)
    * Added currency conversion tests (Robert Roth)
    * Added support for frequencies conversion (Dave Hulst)
    * Added support for converting to and from weeks (Dave Hulst)
    * Added support for converting to and from centuries and decades (Dave Hulst)
    * Increase buttons font size #201 (Robert Roth)
    * Added % button to Advanced mode (Dave Hulst)
    * Show 4 decimals in converter instead of only two #203 (Robert Roth)
    * Added style classes to buttons !76 (Dave Hulst)

Overview of changes in gnome-calculator 40.alpha
    * Use libhandy for window and headerbar !69 (Cristopher Davis)
    * Use C instead of Clr in help !70 (scootergrisen)
    * Fixed broken currency conversion on first start #199 (Robert Roth)
    * Removed duplicate word from help #198 (Robert Roth)
    * Added lbs shortcut for pounds conversion (Robert Roth)
    * Fixed inconsistent word size (A. M. Roswell)
    * Removed unused trunc button from programming mode #41 (Robert Roth)
    * Fixed deprecation warnings
    * Added Serbian Dinar with fixed rate #49 (Robert Roth)
    * Added Bangladeshi Taka with fixed rate #191 (A. M. Roswell)
    * Updated mailing list contact to Discourse (Robert Roth)
    * Added basic help page for programming mode (A. M. Roswell)
    * Added insert character code button (A. M. Roswell)
    * Dim inapplicable bits on word size change #189 (A. M. Roswell)
    * Make the conversion labels selectable (Robert Roth)
    * Do not convert on swap #170 (Robert Roth)
    * Word size changer in programming mode !58 (A. M. Roswell)
    * Added metric cups conversion unit !53 (Lucy Coleclough)
    * Fixed astronomical unit conversion !51 (Thomas Nilsson)
    * Fixed feet-based units name, added mph and kph shortcuts #180 (Robert Roth)
    * Use shell copy to clipboard action #178 (Robert Roth)
    * Fixed preferences of angle units !56 (Delton Ding)

Overview of changes in gnome-calculator 3.38.0

Overview of changes in gnome-calculator 3.37.92

Overview of changes in gnome-calculator 3.37.90
    * Add tooltips for bits in programming mode !46 (Olliver Schinagl)
    * snap packaging updates (Ken VanDine)
    * Added link to website in About #155 (Robert Roth)
    * Added speed conversions !49 (Mathieu Heurtevin)
    * History view follows preferences #105, #159, #168 (Robert Roth)
    * Added month as time unit #158 (Robert Roth)
    * Better help for variables example usage #154 (Robert Roth)
    * Defined pi variable, added pi button in programming mode #153 (Robert Roth)
    * CI build fixes (Robert Roth)
    * Updated app icon !47 (Jakub Steiner)
    * Fixed bug returning empty string as result #152 (Robert Roth)
    * Support latex-style multiplication #164 (Robert Roth)
    * Added support for tau constant #46 (Robert Roth)
    * Unify constant handling (Robert Roth)
    * Separate UI files from sources (Robert Roth)
    * Moved number format selection to separate menu #24 (Robert Roth)
    * Replaces mode selector shortcuts with Ctrl+Alt (Robert Roth)
    * Clear answer if editing right before it #59, #161 (Robert Roth)
    * Moved preferences dialog to UI file (Robert Roth)
    * Refresh bits panel after calculation #38 (Robert Roth)
    * Removed past author addresses #174 (Robert Roth)

Overview of changes in gnome-calculator 3.36.0

Overview of changes in gnome-calculator 3.35.92
    * doc: Don't pass --fatal-warnings to valadoc (Rico Tzschichholz)
    * Removed obsolete keyboard shortcut #148 (Robert Roth)
    * help: Update icon for 3.36 (Andre Klapper)

Overview of changes in gnome-calculator 3.35.90
    * Drop padding around the display !40 (Adrien Plazas)
    * Updated Keyboard Shortcuts (Sabri Ünal)
    * Handle Escape and Enter correctly with completion #144 (Robert Roth)
    * Added F10 for primary menu shortcut #148 (Robert Roth)
    * Updated app icon !43 (Tobias Bernard)
    * Added Rack Units to the conversions !37 (Léo Gillot-Lamure)
    * Fixed freeze on calculating atan(+/-i) #139 (Robert Roth)
    * Fixed mode shortcuts by removing blocking mnemonics #138 (Robert Roth)
    * Implemented result history browsing using alt left/right #129 (Robert Roth)
    * Added translator comments for possible modes as command line arguments !38 (Rafael Fontenelle)

Overview of changes in gnome-calculator 3.35.3
    * Help updates (Andre Klapper)

Overview of changes in gnome-calculator 3.35.2
    * List possible modes in commandline help #112 (Robert Roth)
    * Add square feet unit #132 (Robert Roth)
    * Base conversion display selectable #123 (Robert Roth)
    * Created nightly icon (Jakub Steiner)
    * Snap build updates (Heather Ellsworth)
    * GCalc library code fixes (Rico Tzschichholz, Daniel Espinoza Ortiz)
    * Update required meson version (Diego Escalante Urrelo)
    * Adapt code to changed gtk+-3.0 bindings (Rico Tzschichholz)
    * Added GCi libary and tests for controllers for widgets (Daniel Espinoza Ortiz)
    * Solve on = key if input isq not a variable name #22 (Alberto González Palomo)

Overview of changes in gnome-calculator 3.33.92
    * README updates (Roger)

Overview of changes in gnome-calculator 3.33.90
    * Flatpak build cleanup (Jordan Petridis)
    * Debug messages cleanup (Daniel Espinosa Ortiz)

Overview of changes in gnome-calculator 3.33.3
    * calculator library build fixes (Daniel Espinosa Ortiz)
    * CI build fixes (Ken VanDine)
    * Added mnemonics for primary menu items #113 (Robert Roth)
    * Dropped leading zeros octal prefix #114, #109, #110 (Robert Roth)

Overview of changes in gnome-calculator 3.33.2
    * Separated calculator library !19 (Daniel Espinosa Ortiz)
    * Ensure icon is available for shell (Ken VanDine)
    * Support entering left/right shift with keyboard #98 (Robert Roth)
    * Fixed CFA conversion rate #102 (Robert Roth)
    * Remove copy icon from search provider results #103 (Robert Roth)
    * Do not assume octal base for binary numbers #101 (Robert Roth)
    * Show thousands separator in unit converter #102 (Robert Roth)
    * Use currency name instead of display name for conversion #106 (Robert Roth)
    * Quit warns and closes all windows #51 (Robert Roth)
    * Avoid normalizing the equation twice in search #104 (Pascal Nowack)
    * Ignore keypresses while calculating results #47 (Robert Roth)
    * Only allow one decimal point in numbers #5 (Robert Roth)
    * Application icon updated in help (Andre Klapper)
jperkin pushed a commit that referenced this issue Nov 21, 2023
Enhancements

    Update to latest LSP spec by @karthiknadig in #281

Bug Fixes

    Update package classifiers by @karthiknadig in #284
jperkin pushed a commit that referenced this issue Dec 11, 2023
Changelog:
29 November 2023: Wouter
	- Tag for 4.8.0rc1.

28 November 2023: Wouter
	- Set up doc/RELNOTES for upcoming release.
	- Fix unit test kill_from_pidfile function for nonexistent files
	  because the argument is evaluated before the test expression.
	- Fix rr-test to also convert the contents of the just written output
	  file.
	- Fix test set to remove -f nsd.db and rm nsd.db commands.
	- Fix test set to remove difffile option.

27 November 2023: Jeroen
	- Fix #14: Set timeout to 3s when servicing remaining TCP connections.
	- Fix: Always instate write handler after reading queries from TCP.
	- Answer first query on connections accepted just before reload.

27 November 2023: Wouter
	- Merge #305: faster stats. Statistics can be gathered while a reload
	  is in progress.

27 November 2023: Willem
	- Merge #302: Test package fixes. Correct Auxfiles, kill_from_pidfile
	  function and fix drop_updates, rr-test and xfr_update tests.

1 November 2023: Jeroen
	- Remove on-disk database.

31 October 2023: Wouter
	- Merge #301: improve the logging of ixfr fallbacks to axfr.

30 October 2023: Jeroen
	- Fix processing of consolidated IXFRs.

30 October 2023: Wouter
	- Fix for interprocess communication to set quit sync command from
	  main process explicitly.

3 October 2023: Wouter
	- Merge #281: Proxy protocol. An implementation of PROXYv2 for NSD.
	  It can be configured with proxy-protocol-port: portnum with the
	  port number of the interface on which proxy traffic is handled.
	  The interface can support proxy traffic for UDP, TCP and TLS.

21 September 2023: Wouter
	- Merge #295: Update e-mail addresses, add ref to support contracts

31 August 2023: Wouter
	- Fix autoconf 2.69 warnings in configure.

14 July 2023: Wouter
	- Merge #287: Update nsd.conf.5.in.

11 July 2023: Wouter
	- Fix unused variable warning in unit test of udb.

22 June 2023: Wouter
	- Fix #284: dnstap_collector.c: SOCK_NONBLOCK is not available on
	  Mac/Darwin.

7 June 2023: Wouter
	- Merge #282: Improve nsd.conf man page.
	- Fix unused but set variable warning.
	- Fix #283: Compile failure in remote.c when --disable-bind8-stats
	  and --without-ssl are specified.
jperkin pushed a commit that referenced this issue Jan 9, 2024
What's Changed
- Changed: Aeruginous CHANGELOG fragment creation logic by @kevinmatthes in #279
- Changed: Use native rust support for async traits by @AmmarAbouZor in #265
- Added: Add full screen mode by @orhun in #281
- Changed: Main Footer Height is calculated dynamically by @AmmarAbouZor in #284
- Fixed: App will be redrawn on not handled input too by @AmmarAbouZor in #285
- Fixed: CHANGELOG creation logic; fixes #286 by @kevinmatthes in #287
- Fixed: Call to Aeruginous; fixes #286 by @kevinmatthes in #288
- Fixed: Commit fetch depth in CHANGELOG assembly; fixes #286 by @kevinmatthes in #289
jperkin pushed a commit that referenced this issue Feb 13, 2024
0.9

Improved blocks rendering by @tordex in #268
Refactor render_item based classes by @tordex in #269
Discard invalid color declarations by @stasoid in #274
Add litehtml-specific testing option in cmake by @charliewolf in #282
Basic implementation for css counters by @MicCalo in #281
Media_query: Treat unknown media type as none by @imzyxwvu in #283
Flex layout by @tordex in #285

0.8

fix: render_test._/"acid1.htm" test fails on x86 architecture

0.7

Many changes to improve rendering of inline and block elements.
Improved rendering performance
litehtml now passes Acid1 test
Removed some legacy code
Refactoring to make code more clean
Added additional rendering tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant