Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
bump: Version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iakdis committed Mar 14, 2023
1 parent 62d7556 commit 3efccde
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 13 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion installers/Debian/BuhoCMS/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: buhocms
Version: 0.3.0
Version: 0.4.0
Architecture: all
Essential: no
Priority: optional
Expand Down
20 changes: 15 additions & 5 deletions installers/Flatpak/org.buhocms.BuhoCMS.metainfo.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>org.buhocms.BuhoCMS</id>

<name>BuhoCMS</name>
<summary>A local CMS for Hugo static sites</summary>
<developer_name>iakmds</developer_name>

<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-or-later</project_license>

<content_rating type="oars-1.0" />

<url type="homepage">https://github.com/iakmds/buhocms</url>
<url type="homepage">https://buhocms.org</url>
<url type="bugtracker">https://github.com/iakmds/buhocms/issues</url>
<url type="translate">https://github.com/iakmds/buhocms/#translating</url>

<description>
<p>
BuhoCMS is a local Content Management System for static site generators like Hugo.
Expand Down Expand Up @@ -55,6 +56,15 @@
</screenshot>
</screenshots>
<releases>
<release version="0.4.0" date="2023-03-14">
<description>
<p>TODO Release 0.4.0 of BuhoCMS</p>
<ul>
<li>TODO</li>
<li>Various bug fixes and localization improvements</li>
</ul>
</description>
</release>
<release version="0.3.0" date="2023-03-08">
<description>
<p>Release 0.3.0 of BuhoCMS</p>
Expand All @@ -63,7 +73,7 @@
<li>Recently opened websites list when opening a site</li>
<li>Terminal output button to view all command logs</li>
<li>Add Chinese translation</li>
<li>Various bug fixes, localization improvements</li>
<li>Various bug fixes and localization improvements</li>
</ul>
</description>
</release>
Expand All @@ -74,7 +84,7 @@
<li>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</li>
<li>Switch between Front matter GUI/Text mode with a new button</li>
<li>Tags GUI: Add a submit button on the right side</li>
<li>Various bug fixes, localization improvements</li>
<li>Various bug fixes and localization improvements</li>
</ul>
</description>
</release>
Expand Down
2 changes: 1 addition & 1 deletion lib/src/logic/buho_functions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down
2 changes: 1 addition & 1 deletion lib/src/pages/onboarding_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class _OnboardingPageState extends State<OnboardingPage> 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,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 3efccde

Please sign in to comment.