diff --git a/README.md b/README.md index 964b68be..0aee879a 100644 --- a/README.md +++ b/README.md @@ -193,14 +193,13 @@ Feel free to send in a [pull request](https://github.com/iakmds/buhocms/pulls)! - [ ] Custom app theme colors - [ ] Markdown Toolbar: "Add media" button for images for selecting an image - [ ] Markdown Toolbar: Shortcuts - - [ ] Localization: Markdown Toolbar tooltip texts - [ ] Configurable shortcuts + - [x] Localization: Markdown Toolbar tooltip texts (v0.4.0) - [x] Show terminal output (v0.3.0) **Hugo specific:** - [ ] Work with both hugo.* and config.* names ([see Hugo Documentation](https://gohugo.io/getting-started/configuration/#hugotoml-vs-configtoml)) - [ ] hugo/config.toml, hugo/config.yaml, hugo/config.json editor (+ create a .bak backup file) - - [ ] Hugo [Archetypes](https://gohugo.io/content-management/archetypes) editor - [ ] Be able to delete themes and open the theme folder button - [ ] [Git-submodules](https://gohugo.io/getting-started/quick-start/#explanation-of-commands) for themes support diff --git a/installers/AppImage/BuhoCMS.AppDir/org.buhocms.BuhoCMS.desktop b/installers/AppImage/BuhoCMS.AppDir/org.buhocms.BuhoCMS.desktop index 4bb56a40..5f1fdce2 100644 --- a/installers/AppImage/BuhoCMS.AppDir/org.buhocms.BuhoCMS.desktop +++ b/installers/AppImage/BuhoCMS.AppDir/org.buhocms.BuhoCMS.desktop @@ -1,6 +1,6 @@ [Desktop Entry] Version=1.0 -X-AppImage-Version=0.3.0 +X-AppImage-Version=0.4.0 Type=Application Name=BuhoCMS diff --git a/installers/AppImage/BuhoCMS.AppDir/usr/share/applications/org.buhocms.BuhoCMS.desktop b/installers/AppImage/BuhoCMS.AppDir/usr/share/applications/org.buhocms.BuhoCMS.desktop index 4bb56a40..5f1fdce2 100644 --- a/installers/AppImage/BuhoCMS.AppDir/usr/share/applications/org.buhocms.BuhoCMS.desktop +++ b/installers/AppImage/BuhoCMS.AppDir/usr/share/applications/org.buhocms.BuhoCMS.desktop @@ -1,6 +1,6 @@ [Desktop Entry] Version=1.0 -X-AppImage-Version=0.3.0 +X-AppImage-Version=0.4.0 Type=Application Name=BuhoCMS diff --git a/installers/Debian/BuhoCMS/DEBIAN/control b/installers/Debian/BuhoCMS/DEBIAN/control index bb73f806..3e9e9c32 100644 --- a/installers/Debian/BuhoCMS/DEBIAN/control +++ b/installers/Debian/BuhoCMS/DEBIAN/control @@ -1,5 +1,5 @@ Package: buhocms -Version: 0.3.0 +Version: 0.4.0 Architecture: all Essential: no Priority: optional diff --git a/installers/Flatpak/org.buhocms.BuhoCMS.metainfo.xml b/installers/Flatpak/org.buhocms.BuhoCMS.metainfo.xml index 497baec5..86826c3e 100644 --- a/installers/Flatpak/org.buhocms.BuhoCMS.metainfo.xml +++ b/installers/Flatpak/org.buhocms.BuhoCMS.metainfo.xml @@ -1,17 +1,18 @@ org.buhocms.BuhoCMS - BuhoCMS A local CMS for Hugo static sites + iakmds CC0-1.0 GPL-3.0-or-later - - https://github.com/iakmds/buhocms + https://buhocms.org https://github.com/iakmds/buhocms/issues + https://github.com/iakmds/buhocms/#translating +

BuhoCMS is a local Content Management System for static site generators like Hugo. @@ -55,6 +56,15 @@ + + +

TODO Release 0.4.0 of BuhoCMS

+
    +
  • TODO
  • +
  • Various bug fixes and localization improvements
  • +
+
+

Release 0.3.0 of BuhoCMS

@@ -63,7 +73,7 @@
  • Recently opened websites list when opening a site
  • Terminal output button to view all command logs
  • Add Chinese translation
  • -
  • Various bug fixes, localization improvements
  • +
  • Various bug fixes and localization improvements
  • @@ -74,7 +84,7 @@
  • Custom Hugo Flags are now supported when (i) starting a Hugo server, (ii) building a Hugo site, (iii) creating a new post, (iv) creating a new Hugo site
  • Switch between Front matter GUI/Text mode with a new button
  • Tags GUI: Add a submit button on the right side
  • -
  • Various bug fixes, localization improvements
  • +
  • Various bug fixes and localization improvements
  • diff --git a/lib/src/logic/buho_functions.dart b/lib/src/logic/buho_functions.dart index e27aedf4..cfbaf6d1 100644 --- a/lib/src/logic/buho_functions.dart +++ b/lib/src/logic/buho_functions.dart @@ -403,7 +403,7 @@ void about({required BuildContext context}) { context: context, applicationName: 'BuhoCMS', applicationVersion: Localization.appLocalizations().version( - '0.3.0 Alpha', + '0.4.0 Alpha', ), //TODO update version number applicationIcon: const Image( image: AssetImage('assets/images/icon.png'), diff --git a/lib/src/pages/onboarding_page.dart b/lib/src/pages/onboarding_page.dart index 8770cf4b..6e264294 100644 --- a/lib/src/pages/onboarding_page.dart +++ b/lib/src/pages/onboarding_page.dart @@ -116,7 +116,7 @@ class _OnboardingPageState extends State with WindowListener { ), const SizedBox(height: 8.0), Text( - 'Alpha (0.3.0)', // TODO update version number + 'Alpha (0.4.0)', // TODO update version number style: TextStyle( color: Colors.teal.shade800, fontSize: 24.0, diff --git a/pubspec.yaml b/pubspec.yaml index dfe6035a..71cc2dfc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 0.3.0+3 +version: 0.4.0+4 environment: sdk: '>=2.18.1 <3.0.0'