Re: [Zim-wiki] Zim 0.73 released !

2020-06-15 Thread Raphael Hertzog
Hi,

On Thu, 11 Jun 2020, Jaap Karssenberg wrote:
> Quick update on translations: unfortunately the template import on
> launchpad is broken, and no clue how to fix it - seems that this function
> does not play well with a branch imported from git :(
> 
> Probably it is time to go to a new workflow for translations and cut the
> last tie with launchpad project management. Just not sure yet where to go.

weblate.org? I use the free version for my book.

Cheers,

> On Sat, Jun 6, 2020 at 8:39 PM Jaap Karssenberg 
> wrote:
> 
> > Dear all,
> >
> > Although a bit delayed, I just release zim 0.73.
> >
> > Absolute highlight is that this version now allows formatting styles to
> > overlap in the editor. A special thanks to Edvard Rejthar for that patch.
> >
> > See the changelog below for the full list of updates
> >
> > Translation template should be imported soon in the launchpad website.
> > Please check over there if you want to help translating zim.
> >
> > Regards,
> >
> > Jaap
> >
> >
> > ##  0.73.0 - Sat 06 Jun 2020
> > * Add ability to combine formatting styles in editor
> > * Improve URL and link parsing to look for matching brackets
> > * Reduce the number of `-` needed to auto-format a horizontal line
> > * Allow typing bullet after e.g. checkbox to replace it
> > * Add autoformat for sub- and super-script by typing `^..` and `_{..}`
> > * On autoformat headings also strip trailing `=`
> > * Fix issue with lost formatting when using spellchecker
> > * Add support for "paragraph-background" property in style.conf
> > * Improve keyboard behavior of find bar in editor
> > * Swap the layout in the InsertDateDialog
> > * Allow re-arranging side pane tabs by drag and drop
> > * Add option to automatically collapse sections in the pageindex
> > * Fix regression for inserting links on "Attach file" and moved this
> >   function to the Insert menu
> > * Merge MovePageDialog and RenamePageDialog into a single dialog
> > * Fix behavior when renaming non-existing "placeholder" pages
> > * Add workaround for drag-and-drop issue #390
> > * Whitelist image formats in latex export to avoid invalid image types
> > * Add MacOS menubar plugin & fix for main menu mnemonics in MacOS
> > * Give temporary directories unique names to improve robustness
> > * Support TEXTDOMAINDIR evironment variable to set locale directory
> > * Improve folder checks for automount feature
> > * Improve window colors in distraction free mode
> > * Add option to set the wrap-mode in sourceview
> > * Add theme choice for the source view plugin
> > * Add "private" switch to server command for commandline usage
> > * Add authentication support to web server
> > * Add template selection option to web server dialog
> > * Add option for fontsize to table of contents plugin
> > * Add option to show horizontal lines in table of contents
> >
> >

> ___
> Mailing list: https://launchpad.net/~zim-wiki
> Post to : zim-wiki@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~zim-wiki
> More help   : https://help.launchpad.net/ListHelp


-- 
  ⢀⣴⠾⠻⢶⣦⠀   Raphaël Hertzog 
  ⣾⠁⢠⠒⠀⣿⡁
  ⢿⡄⠘⠷⠚⠋The Debian Handbook: https://debian-handbook.info/get/
  ⠈⠳⣄   Debian Long Term Support: https://deb.li/LTS

___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp


Re: [Zim-wiki] Zim 0.73 released !

2020-06-11 Thread Ari
For a translations workflow based on  git - see for example what the
darktable app (a GTK-based photo editor which is awesome) team does

https://redmine.darktable.org/projects/darktable/wiki/Translating_darktable



Translating darktable Through git

This is a guide on how to translate darktable through pull requests in git.
This is the preferred way, since updates are more likely to get overlooked
or forgotten on the mailing list, whereas through pull requests, the
developers will keep receiving reminders until an update is implemented.

This guide assumes that your language is already present in darktable. If
not, please consult the darktable developers mailing list to have your
language added.
Setting Up Git On Your System Prerequisites

   - Create an account on GitHub , if you don't already
   have one.
   - Install git and intltool on your system. On Debian/Ubuntu this would
   be sudo apt-get install git intltool.
   - A po editor such as Lokalize  or
   Poedit .
   - darktable's build dependencies need to be installed on your system.
   Please refer to Building_darktable_20
   
   .


   1. Go to the darktable GitHub page
    and click the "Fork" icon in
   the top, right corner. By now you have a complete copy (a "fork") of the
   darktable repository on your GitHub account.
   2. Start up a terminal, and cd to the place where you want to store a
   copy of the darktable repository. Then, write the following command to
   clone your GitHub fork of the repository into the current directory:

   git clone https://github.com/MYGITHUBNAME/darktable.git

   3. cd into your newly cloned repository, and assign a remote called
   "upstream" to the original darktable repository (your fork is referenced to
   as "origin"):

   cd darktable
   git remote add upstream https://github.com/darktable-org/darktable.git


Working Routine

These are the steps you would typically follow, every time you want to work
on your translation.

   1. Fetch any new changes to the source code from the original darktable
   repository "upstream":

   git fetch upstream

   2. Optionally change to a non-master branch, in this case darktable-2.0.x.
   You would typically do this when the project is about to make a new
   release. If you work on a non-master branch, you will need to change
   master into the branch name in all steps below. If you want to work on
   master branch, you can skip this step. Or if you already changed into
   another branch and want to change back to master, do this step, but with
   master instead of the branch name. To see which branch you're working
   on, do git status.

   git checkout darktable-2.0.x

   3. Now, merge the fetches changes into you working files:

   git merge upstream/master

   4. Build darktable (takes a while), cd into the po directory where
   translations are, and update your language file to reflect the newest text
   strings found in the source files:

   ./build.sh
   cd po
   intltool-update da #change da into your language

   5. Start up your po editor and start translating.
   6. Tell git to include your changed file into the next commit, then do
   the actual commit, and then push your commit to your fork on GitHub:

   git add da.po  #change into your po file
   git commit -m 'Updated Danish translation'  #obviously change
comment to fit your language
   git push origin master


   If fact, you can do several commits before pushing, and you can push
   several times before going to the next step.
   7. Go to the GitHib page for your darktable fork. Click to see details
   of your latest commit(s). There you'll be presented with an option to
   create a pull request. When you've done so, you have told the darktable
   developers that your changes are ready for merging into the actual
   darktable repository.




On Thu, Jun 11, 2020 at 9:50 AM Jaap Karssenberg 
wrote:

> Quick update on translations: unfortunately the template import on
> launchpad is broken, and no clue how to fix it - seems that this function
> does not play well with a branch imported from git :(
>
> Probably it is time to go to a new workflow for translations and cut the
> last tie with launchpad project management. Just not sure yet where to go.
>
> Regards,
>
> Jaap
>
>
> On Sat, Jun 6, 2020 at 8:39 PM Jaap Karssenberg <
> jaap.karssenb...@gmail.com> wrote:
>
>> Dear all,
>>
>> Although a bit delayed, I just release zim 0.73.
>>
>> Absolute highlight is that this version now allows formatting styles to
>> overlap in the editor. A special thanks to Edvard Rejthar for that patch.
>>
>> See the changelog below for the full list of updates
>>
>> Translation template should be imported soon in the launchpad website.
>> Please check over there if you want to help translating 

Re: [Zim-wiki] Zim 0.73 released !

2020-06-11 Thread Jaap Karssenberg
Quick update on translations: unfortunately the template import on
launchpad is broken, and no clue how to fix it - seems that this function
does not play well with a branch imported from git :(

Probably it is time to go to a new workflow for translations and cut the
last tie with launchpad project management. Just not sure yet where to go.

Regards,

Jaap


On Sat, Jun 6, 2020 at 8:39 PM Jaap Karssenberg 
wrote:

> Dear all,
>
> Although a bit delayed, I just release zim 0.73.
>
> Absolute highlight is that this version now allows formatting styles to
> overlap in the editor. A special thanks to Edvard Rejthar for that patch.
>
> See the changelog below for the full list of updates
>
> Translation template should be imported soon in the launchpad website.
> Please check over there if you want to help translating zim.
>
> Regards,
>
> Jaap
>
>
> ##  0.73.0 - Sat 06 Jun 2020
> * Add ability to combine formatting styles in editor
> * Improve URL and link parsing to look for matching brackets
> * Reduce the number of `-` needed to auto-format a horizontal line
> * Allow typing bullet after e.g. checkbox to replace it
> * Add autoformat for sub- and super-script by typing `^..` and `_{..}`
> * On autoformat headings also strip trailing `=`
> * Fix issue with lost formatting when using spellchecker
> * Add support for "paragraph-background" property in style.conf
> * Improve keyboard behavior of find bar in editor
> * Swap the layout in the InsertDateDialog
> * Allow re-arranging side pane tabs by drag and drop
> * Add option to automatically collapse sections in the pageindex
> * Fix regression for inserting links on "Attach file" and moved this
>   function to the Insert menu
> * Merge MovePageDialog and RenamePageDialog into a single dialog
> * Fix behavior when renaming non-existing "placeholder" pages
> * Add workaround for drag-and-drop issue #390
> * Whitelist image formats in latex export to avoid invalid image types
> * Add MacOS menubar plugin & fix for main menu mnemonics in MacOS
> * Give temporary directories unique names to improve robustness
> * Support TEXTDOMAINDIR evironment variable to set locale directory
> * Improve folder checks for automount feature
> * Improve window colors in distraction free mode
> * Add option to set the wrap-mode in sourceview
> * Add theme choice for the source view plugin
> * Add "private" switch to server command for commandline usage
> * Add authentication support to web server
> * Add template selection option to web server dialog
> * Add option for fontsize to table of contents plugin
> * Add option to show horizontal lines in table of contents
>
>
___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp


Re: [Zim-wiki] Zim 0.73 released !

2020-06-08 Thread Joseph Reagle

On 6/6/20 2:39 PM, Jaap Karssenberg wrote:
> Although a bit delayed, I just release zim 0.73.

Excellent Jaap, thank you!

BTW: I'm seeing the following warnings.

```
** (zim.py:29089): WARNING **: 08:15:11.498: iso_639.xml: Failed to open file 
“/usr/share/xml/iso-codes/iso_639.xml”: open() failed: No such file or directory

** (zim.py:29089): WARNING **: 08:15:11.498: iso_3166.xml: Failed to open file 
“/usr/share/xml/iso-codes/iso_3166.xml”: open() failed: No such file or 
directory

WARNING: /Users/reagle/bin/zim-0.73.0/zim/plugins/osx_menubar.py:28: 
PyGIWarning: GtkosxApplication was imported without specifying a version first. 
Use gi.require_version('GtkosxApplication', '1.0') before import to ensure that 
the right version gets loaded.
  from gi.repository import GtkosxApplication

WARNING: 
/Users/reagle/bin/zim-0.73.0/zim/plugins/attachmentbrowser/thumbnailer.py:289: 
SyntaxWarning: 'NoneType' object is not callable; perhaps you missed a comma?
  raise None(None)
```


 

___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp


Re: [Zim-wiki] Zim 0.73 released !

2020-06-07 Thread Yahoo
Hi/Bonjour,

Yes, thank you very much for this wonderful piece of software!

I've made the switch from Tomboy about 10 years ago and never regret it.
Used it at home on linux and at my job on linux and windows (just wish I
could use it on Android). When I left my job, a couple of years ago,
coworkers asked me to leave them my Zim notes, because they knew how
useful these notes were.

Thanks again/Merci!

--

Renaud Levesque

Québec, Canada


Le 20-06-06 à 14 h 39, Jaap Karssenberg a écrit :
> Dear all,
>
> Although a bit delayed, I just release zim 0.73.
>
> Absolute highlight is that this version now allows formatting styles
> to overlap in the editor. A special thanks to Edvard Rejthar for that
> patch.
>
> See the changelog below for the full list of updates
>
> Translation template should be imported soon in the launchpad website.
> Please check over there if you want to help translating zim.
>
> Regards,
>
> Jaap
>
>
> ##  0.73.0 - Sat 06 Jun 2020
> * Add ability to combine formatting styles in editor
> * Improve URL and link parsing to look for matching brackets
> * Reduce the number of `-` needed to auto-format a horizontal line
> * Allow typing bullet after e.g. checkbox to replace it
> * Add autoformat for sub- and super-script by typing `^..` and `_{..}`
> * On autoformat headings also strip trailing `=`
> * Fix issue with lost formatting when using spellchecker
> * Add support for "paragraph-background" property in style.conf
> * Improve keyboard behavior of find bar in editor
> * Swap the layout in the InsertDateDialog
> * Allow re-arranging side pane tabs by drag and drop
> * Add option to automatically collapse sections in the pageindex
> * Fix regression for inserting links on "Attach file" and moved this
>   function to the Insert menu
> * Merge MovePageDialog and RenamePageDialog into a single dialog
> * Fix behavior when renaming non-existing "placeholder" pages
> * Add workaround for drag-and-drop issue #390
> * Whitelist image formats in latex export to avoid invalid image types
> * Add MacOS menubar plugin & fix for main menu mnemonics in MacOS
> * Give temporary directories unique names to improve robustness
> * Support TEXTDOMAINDIR evironment variable to set locale directory
> * Improve folder checks for automount feature
> * Improve window colors in distraction free mode
> * Add option to set the wrap-mode in sourceview
> * Add theme choice for the source view plugin
> * Add "private" switch to server command for commandline usage
> * Add authentication support to web server
> * Add template selection option to web server dialog
> * Add option for fontsize to table of contents plugin
> * Add option to show horizontal lines in table of contents
>
>
> ___
> Mailing list: https://launchpad.net/~zim-wiki
> Post to : zim-wiki@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~zim-wiki
> More help   : https://help.launchpad.net/ListHelp
___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp


Re: [Zim-wiki] Zim 0.73 released !

2020-06-07 Thread Marco Cevoli
Awesome, thanks for the update!

Marco Cevoli

On Sun, Jun 7, 2020 at 8:05 AM Jaap Karssenberg
 wrote:
>
> Fabian is working on the windows installer. Expect to be able to publish it 
> in a few weeks for this release.
>
> For the 1.0 there is still work to do. I have a list that I'm working 
> towards. Will publish it in the wiki.
>
> Regards,
>
> Jaap
>
> Op za 6 jun. 2020 23:16 schreef Marco Cevoli :
>>
>> Thanks a lot, Jaap.
>>
>> Now we only need a new Windows user that can take care of the Win
>> installer for the unlucky among us who are stuck with Win...  :)
>>
>> Marco Cevoli
>>
>>
>> On Sat, Jun 6, 2020 at 9:44 PM Mark Richardson  wrote:
>> >
>> > I just tried out the formatting styles overlap, and it works GREAT.
>> > I've been wanting this for a long time. Thank you!
>> >
>> > On Sat, 6 Jun 2020 20:39:13 +0200
>> > Jaap Karssenberg  wrote:
>> >
>> > > Dear all,
>> > >
>> > > Although a bit delayed, I just release zim 0.73.
>> > >
>> > > Absolute highlight is that this version now allows formatting styles
>> > > to overlap in the editor. A special thanks to Edvard Rejthar for that
>> > > patch.
>> > >
>> > > See the changelog below for the full list of updates
>> > >
>> > > Translation template should be imported soon in the launchpad website.
>> > > Please check over there if you want to help translating zim.
>> > >
>> > > Regards,
>> > >
>> > > Jaap
>> > >
>> > >
>> > > ##  0.73.0 - Sat 06 Jun 2020
>> > > * Add ability to combine formatting styles in editor
>> > > * Improve URL and link parsing to look for matching brackets
>> > > * Reduce the number of `-` needed to auto-format a horizontal line
>> > > * Allow typing bullet after e.g. checkbox to replace it
>> > > * Add autoformat for sub- and super-script by typing `^..` and `_{..}`
>> > > * On autoformat headings also strip trailing `=`
>> > > * Fix issue with lost formatting when using spellchecker
>> > > * Add support for "paragraph-background" property in style.conf
>> > > * Improve keyboard behavior of find bar in editor
>> > > * Swap the layout in the InsertDateDialog
>> > > * Allow re-arranging side pane tabs by drag and drop
>> > > * Add option to automatically collapse sections in the pageindex
>> > > * Fix regression for inserting links on "Attach file" and moved this
>> > >   function to the Insert menu
>> > > * Merge MovePageDialog and RenamePageDialog into a single dialog
>> > > * Fix behavior when renaming non-existing "placeholder" pages
>> > > * Add workaround for drag-and-drop issue #390
>> > > * Whitelist image formats in latex export to avoid invalid image types
>> > > * Add MacOS menubar plugin & fix for main menu mnemonics in MacOS
>> > > * Give temporary directories unique names to improve robustness
>> > > * Support TEXTDOMAINDIR evironment variable to set locale directory
>> > > * Improve folder checks for automount feature
>> > > * Improve window colors in distraction free mode
>> > > * Add option to set the wrap-mode in sourceview
>> > > * Add theme choice for the source view plugin
>> > > * Add "private" switch to server command for commandline usage
>> > > * Add authentication support to web server
>> > > * Add template selection option to web server dialog
>> > > * Add option for fontsize to table of contents plugin
>> > > * Add option to show horizontal lines in table of contents
>> >
>> >
>> > ___
>> > Mailing list: https://launchpad.net/~zim-wiki
>> > Post to : zim-wiki@lists.launchpad.net
>> > Unsubscribe : https://launchpad.net/~zim-wiki
>> > More help   : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp


Re: [Zim-wiki] Zim 0.73 released !

2020-06-06 Thread Maik Mory
I'm checking my schedule.
I always used pre-built packages. Will someone introduce me to a nice checkout 
on Ubuntu? Then I will be able to check for differences with windows tool chain.

Gesendet von Outlook Mobile<https://aka.ms/blhgte>


From: Zim-wiki  on 
behalf of Marco Cevoli 
Sent: Saturday, June 6, 2020 11:15:37 PM
To: Zim 
Subject: Re: [Zim-wiki] Zim 0.73 released !

Thanks a lot, Jaap.

Now we only need a new Windows user that can take care of the Win
installer for the unlucky among us who are stuck with Win...  :)

Marco Cevoli


On Sat, Jun 6, 2020 at 9:44 PM Mark Richardson  wrote:
>
> I just tried out the formatting styles overlap, and it works GREAT.
> I've been wanting this for a long time. Thank you!
>
> On Sat, 6 Jun 2020 20:39:13 +0200
> Jaap Karssenberg  wrote:
>
> > Dear all,
> >
> > Although a bit delayed, I just release zim 0.73.
> >
> > Absolute highlight is that this version now allows formatting styles
> > to overlap in the editor. A special thanks to Edvard Rejthar for that
> > patch.
> >
> > See the changelog below for the full list of updates
> >
> > Translation template should be imported soon in the launchpad website.
> > Please check over there if you want to help translating zim.
> >
> > Regards,
> >
> > Jaap
> >
> >
> > ##  0.73.0 - Sat 06 Jun 2020
> > * Add ability to combine formatting styles in editor
> > * Improve URL and link parsing to look for matching brackets
> > * Reduce the number of `-` needed to auto-format a horizontal line
> > * Allow typing bullet after e.g. checkbox to replace it
> > * Add autoformat for sub- and super-script by typing `^..` and `_{..}`
> > * On autoformat headings also strip trailing `=`
> > * Fix issue with lost formatting when using spellchecker
> > * Add support for "paragraph-background" property in style.conf
> > * Improve keyboard behavior of find bar in editor
> > * Swap the layout in the InsertDateDialog
> > * Allow re-arranging side pane tabs by drag and drop
> > * Add option to automatically collapse sections in the pageindex
> > * Fix regression for inserting links on "Attach file" and moved this
> >   function to the Insert menu
> > * Merge MovePageDialog and RenamePageDialog into a single dialog
> > * Fix behavior when renaming non-existing "placeholder" pages
> > * Add workaround for drag-and-drop issue #390
> > * Whitelist image formats in latex export to avoid invalid image types
> > * Add MacOS menubar plugin & fix for main menu mnemonics in MacOS
> > * Give temporary directories unique names to improve robustness
> > * Support TEXTDOMAINDIR evironment variable to set locale directory
> > * Improve folder checks for automount feature
> > * Improve window colors in distraction free mode
> > * Add option to set the wrap-mode in sourceview
> > * Add theme choice for the source view plugin
> > * Add "private" switch to server command for commandline usage
> > * Add authentication support to web server
> > * Add template selection option to web server dialog
> > * Add option for fontsize to table of contents plugin
> > * Add option to show horizontal lines in table of contents
>
>
> ___
> Mailing list: https://launchpad.net/~zim-wiki
> Post to : zim-wiki@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~zim-wiki
> More help   : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp
___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp


Re: [Zim-wiki] Zim 0.73 released !

2020-06-06 Thread Maik Mory
+1 for 1.0

Gesendet von Outlook Mobile<https://aka.ms/blhgte>


From: Zim-wiki  on 
behalf of Mark Richardson 
Sent: Saturday, June 6, 2020 9:42:42 PM
To: Jaap Karssenberg 
Cc: Zim 
Subject: Re: [Zim-wiki] Zim 0.73 released !

I just tried out the formatting styles overlap, and it works GREAT.
I've been wanting this for a long time. Thank you!

On Sat, 6 Jun 2020 20:39:13 +0200
Jaap Karssenberg  wrote:

> Dear all,
>
> Although a bit delayed, I just release zim 0.73.
>
> Absolute highlight is that this version now allows formatting styles
> to overlap in the editor. A special thanks to Edvard Rejthar for that
> patch.
>
> See the changelog below for the full list of updates
>
> Translation template should be imported soon in the launchpad website.
> Please check over there if you want to help translating zim.
>
> Regards,
>
> Jaap
>
>
> ##  0.73.0 - Sat 06 Jun 2020
> * Add ability to combine formatting styles in editor
> * Improve URL and link parsing to look for matching brackets
> * Reduce the number of `-` needed to auto-format a horizontal line
> * Allow typing bullet after e.g. checkbox to replace it
> * Add autoformat for sub- and super-script by typing `^..` and `_{..}`
> * On autoformat headings also strip trailing `=`
> * Fix issue with lost formatting when using spellchecker
> * Add support for "paragraph-background" property in style.conf
> * Improve keyboard behavior of find bar in editor
> * Swap the layout in the InsertDateDialog
> * Allow re-arranging side pane tabs by drag and drop
> * Add option to automatically collapse sections in the pageindex
> * Fix regression for inserting links on "Attach file" and moved this
>   function to the Insert menu
> * Merge MovePageDialog and RenamePageDialog into a single dialog
> * Fix behavior when renaming non-existing "placeholder" pages
> * Add workaround for drag-and-drop issue #390
> * Whitelist image formats in latex export to avoid invalid image types
> * Add MacOS menubar plugin & fix for main menu mnemonics in MacOS
> * Give temporary directories unique names to improve robustness
> * Support TEXTDOMAINDIR evironment variable to set locale directory
> * Improve folder checks for automount feature
> * Improve window colors in distraction free mode
> * Add option to set the wrap-mode in sourceview
> * Add theme choice for the source view plugin
> * Add "private" switch to server command for commandline usage
> * Add authentication support to web server
> * Add template selection option to web server dialog
> * Add option for fontsize to table of contents plugin
> * Add option to show horizontal lines in table of contents


___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp
___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp


Re: [Zim-wiki] Zim 0.73 released !

2020-06-06 Thread Marco Cevoli
Thanks a lot, Jaap.

Now we only need a new Windows user that can take care of the Win
installer for the unlucky among us who are stuck with Win...  :)

Marco Cevoli


On Sat, Jun 6, 2020 at 9:44 PM Mark Richardson  wrote:
>
> I just tried out the formatting styles overlap, and it works GREAT.
> I've been wanting this for a long time. Thank you!
>
> On Sat, 6 Jun 2020 20:39:13 +0200
> Jaap Karssenberg  wrote:
>
> > Dear all,
> >
> > Although a bit delayed, I just release zim 0.73.
> >
> > Absolute highlight is that this version now allows formatting styles
> > to overlap in the editor. A special thanks to Edvard Rejthar for that
> > patch.
> >
> > See the changelog below for the full list of updates
> >
> > Translation template should be imported soon in the launchpad website.
> > Please check over there if you want to help translating zim.
> >
> > Regards,
> >
> > Jaap
> >
> >
> > ##  0.73.0 - Sat 06 Jun 2020
> > * Add ability to combine formatting styles in editor
> > * Improve URL and link parsing to look for matching brackets
> > * Reduce the number of `-` needed to auto-format a horizontal line
> > * Allow typing bullet after e.g. checkbox to replace it
> > * Add autoformat for sub- and super-script by typing `^..` and `_{..}`
> > * On autoformat headings also strip trailing `=`
> > * Fix issue with lost formatting when using spellchecker
> > * Add support for "paragraph-background" property in style.conf
> > * Improve keyboard behavior of find bar in editor
> > * Swap the layout in the InsertDateDialog
> > * Allow re-arranging side pane tabs by drag and drop
> > * Add option to automatically collapse sections in the pageindex
> > * Fix regression for inserting links on "Attach file" and moved this
> >   function to the Insert menu
> > * Merge MovePageDialog and RenamePageDialog into a single dialog
> > * Fix behavior when renaming non-existing "placeholder" pages
> > * Add workaround for drag-and-drop issue #390
> > * Whitelist image formats in latex export to avoid invalid image types
> > * Add MacOS menubar plugin & fix for main menu mnemonics in MacOS
> > * Give temporary directories unique names to improve robustness
> > * Support TEXTDOMAINDIR evironment variable to set locale directory
> > * Improve folder checks for automount feature
> > * Improve window colors in distraction free mode
> > * Add option to set the wrap-mode in sourceview
> > * Add theme choice for the source view plugin
> > * Add "private" switch to server command for commandline usage
> > * Add authentication support to web server
> > * Add template selection option to web server dialog
> > * Add option for fontsize to table of contents plugin
> > * Add option to show horizontal lines in table of contents
>
>
> ___
> Mailing list: https://launchpad.net/~zim-wiki
> Post to : zim-wiki@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~zim-wiki
> More help   : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp


Re: [Zim-wiki] Zim 0.73 released !

2020-06-06 Thread Mark Richardson
I just tried out the formatting styles overlap, and it works GREAT.
I've been wanting this for a long time. Thank you!

On Sat, 6 Jun 2020 20:39:13 +0200
Jaap Karssenberg  wrote:

> Dear all,
> 
> Although a bit delayed, I just release zim 0.73.
> 
> Absolute highlight is that this version now allows formatting styles
> to overlap in the editor. A special thanks to Edvard Rejthar for that
> patch.
> 
> See the changelog below for the full list of updates
> 
> Translation template should be imported soon in the launchpad website.
> Please check over there if you want to help translating zim.
> 
> Regards,
> 
> Jaap
> 
> 
> ##  0.73.0 - Sat 06 Jun 2020
> * Add ability to combine formatting styles in editor
> * Improve URL and link parsing to look for matching brackets
> * Reduce the number of `-` needed to auto-format a horizontal line
> * Allow typing bullet after e.g. checkbox to replace it
> * Add autoformat for sub- and super-script by typing `^..` and `_{..}`
> * On autoformat headings also strip trailing `=`
> * Fix issue with lost formatting when using spellchecker
> * Add support for "paragraph-background" property in style.conf
> * Improve keyboard behavior of find bar in editor
> * Swap the layout in the InsertDateDialog
> * Allow re-arranging side pane tabs by drag and drop
> * Add option to automatically collapse sections in the pageindex
> * Fix regression for inserting links on "Attach file" and moved this
>   function to the Insert menu
> * Merge MovePageDialog and RenamePageDialog into a single dialog
> * Fix behavior when renaming non-existing "placeholder" pages
> * Add workaround for drag-and-drop issue #390
> * Whitelist image formats in latex export to avoid invalid image types
> * Add MacOS menubar plugin & fix for main menu mnemonics in MacOS
> * Give temporary directories unique names to improve robustness
> * Support TEXTDOMAINDIR evironment variable to set locale directory
> * Improve folder checks for automount feature
> * Improve window colors in distraction free mode
> * Add option to set the wrap-mode in sourceview
> * Add theme choice for the source view plugin
> * Add "private" switch to server command for commandline usage
> * Add authentication support to web server
> * Add template selection option to web server dialog
> * Add option for fontsize to table of contents plugin
> * Add option to show horizontal lines in table of contents


___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp


Re: [Zim-wiki] Zim 0.73 released !

2020-06-06 Thread Alessia Moretti
Great news! Thank you very much!

Il Sab 6 Giu 2020, 20:39 Jaap Karssenberg  ha
scritto:

> Dear all,
>
> Although a bit delayed, I just release zim 0.73.
>
> Absolute highlight is that this version now allows formatting styles to
> overlap in the editor. A special thanks to Edvard Rejthar for that patch.
>
> See the changelog below for the full list of updates
>
> Translation template should be imported soon in the launchpad website.
> Please check over there if you want to help translating zim.
>
> Regards,
>
> Jaap
>
>
> ##  0.73.0 - Sat 06 Jun 2020
> * Add ability to combine formatting styles in editor
> * Improve URL and link parsing to look for matching brackets
> * Reduce the number of `-` needed to auto-format a horizontal line
> * Allow typing bullet after e.g. checkbox to replace it
> * Add autoformat for sub- and super-script by typing `^..` and `_{..}`
> * On autoformat headings also strip trailing `=`
> * Fix issue with lost formatting when using spellchecker
> * Add support for "paragraph-background" property in style.conf
> * Improve keyboard behavior of find bar in editor
> * Swap the layout in the InsertDateDialog
> * Allow re-arranging side pane tabs by drag and drop
> * Add option to automatically collapse sections in the pageindex
> * Fix regression for inserting links on "Attach file" and moved this
>   function to the Insert menu
> * Merge MovePageDialog and RenamePageDialog into a single dialog
> * Fix behavior when renaming non-existing "placeholder" pages
> * Add workaround for drag-and-drop issue #390
> * Whitelist image formats in latex export to avoid invalid image types
> * Add MacOS menubar plugin & fix for main menu mnemonics in MacOS
> * Give temporary directories unique names to improve robustness
> * Support TEXTDOMAINDIR evironment variable to set locale directory
> * Improve folder checks for automount feature
> * Improve window colors in distraction free mode
> * Add option to set the wrap-mode in sourceview
> * Add theme choice for the source view plugin
> * Add "private" switch to server command for commandline usage
> * Add authentication support to web server
> * Add template selection option to web server dialog
> * Add option for fontsize to table of contents plugin
> * Add option to show horizontal lines in table of contents
>
> ___
> Mailing list: https://launchpad.net/~zim-wiki
> Post to : zim-wiki@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~zim-wiki
> More help   : https://help.launchpad.net/ListHelp
>
___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp


Re: [Zim-wiki] Zim 0.73 released !

2020-06-06 Thread Johan Vromans
Good job, congratulations!

With so many features, robustness and happy users, why not leave the
experimental 0.* phase and call it 1.0...?

___
Mailing list: https://launchpad.net/~zim-wiki
Post to : zim-wiki@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zim-wiki
More help   : https://help.launchpad.net/ListHelp