Skip to content

Commit

Permalink
Update version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaliy Zarubin committed Nov 6, 2024
1 parent 1bcb7e5 commit d87f98e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 14 deletions.
13 changes: 6 additions & 7 deletions .changeln/changeln.mako
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
### Template engine is Mako - https://www.makotemplates.org/
### Base template format is Markdown - https://python-markdown.github.io/
###
### Show all values:
### Show all values:
### ${context.keys()}
### ${context.__dict__}
###
Expand All @@ -12,16 +12,16 @@
### ln_list_tags: [TagReference]
### ln_count_tags: int
### ln_group_commits: [
### name: str,
### name: str,
### date: datetime,
### commits: [Commit],
### group: [
### {
### name: str,
### name: str,
### commits: [
### {
### commit: Commit,
### regex: [],
### commit: Commit,
### regex: [],
### clean: str
### }
### ]
Expand Down Expand Up @@ -59,10 +59,9 @@ ${"##"} Versions
${"####"} ${group['name']}
% for commit in group['commits']:
- ${commit['clean']} (${commit['commit'].author})
- ${commit['clean']}
% endfor
% endif
% endfor
% endfor
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

### Subscribe and like!

[![Releases DEB](https://img.shields.io/badge/dynamic/json?url=https://api.github.com/repos/keygenqt/aurora-toolbox/releases/latest&query=assets[1][download_count]&label=Releases%20DEB&color=BE8731&logo=github&prefix=0.0.12%20(&suffix=))](https://github.com/keygenqt/aurora-toolbox/releases)
[![Releases RPM](https://img.shields.io/badge/dynamic/json?url=https://api.github.com/repos/keygenqt/aurora-toolbox/releases/latest&query=assets[0][download_count]&label=Releases%20RPM&color=040404&logo=github&prefix=0.0.12%20(&suffix=))](https://github.com/keygenqt/aurora-toolbox/releases)
[![Releases DEB](https://img.shields.io/badge/dynamic/json?url=https://api.github.com/repos/keygenqt/aurora-toolbox/releases/latest&query=assets[1][download_count]&label=Releases%20DEB&color=BE8731&logo=github&prefix=1.0.0%20(&suffix=))](https://github.com/keygenqt/aurora-toolbox/releases)
[![Releases RPM](https://img.shields.io/badge/dynamic/json?url=https://api.github.com/repos/keygenqt/aurora-toolbox/releases/latest&query=assets[0][download_count]&label=Releases%20RPM&color=040404&logo=github&prefix=1.0.0%20(&suffix=))](https://github.com/keygenqt/aurora-toolbox/releases)

![Preview](https://raw.githubusercontent.com/keygenqt/aurora-toolbox/refs/heads/main/files/images/preview_telegram.png)

Expand Down
2 changes: 1 addition & 1 deletion data/ui/dialogs/AboutDialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<property name="presentation-mode">floating</property>
<property name="application-icon">com.keygenqt.aurora-toolbox</property>
<property name="application-name" translatable="yes">Aurora Toolbox</property>
<property name="version">0.0.12</property>
<property name="version">1.0.0</property>
<property name="copyright">© 2024 KeyGenQt</property>
<property name="issue_url">https://github.com/keygenqt/aurora-toolbox/issues</property>
<property name="developer-name" translatable="yes">Vitaliy Zarubin</property>
Expand Down
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ hide:

Установка на примере дистрибутива Ubuntu, но так же доступен rpm пакет, который можно установит примерно так:
```shell
sudo rpm -i aurora-toolbox_0.0.12-1_x86_64.rpm
sudo rpm -i aurora-toolbox_1.0.0-1_x86_64.rpm
```


#### Install

```shell
sudo dpkg -i aurora-toolbox_0.0.12-1_amd64.deb
sudo dpkg -i aurora-toolbox_1.0.0-1_amd64.deb
```

#### Update/Install dependency
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Define our project
project(
'aurora-toolbox',
version: '0.0.12',
version: '1.0.0',
license: ['Apache 2.0'],
meson_version: '>= 0.59.0',
default_options: ['cpp_std=c++17', 'cpp_rtti=false', 'cpp_eh=none',
Expand Down
2 changes: 1 addition & 1 deletion src/base/constants/AppConstants.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import GLib from 'gi://GLib';

export const AppConstants = Object.freeze({
App: {
version: '0.0.12',
version: '1.0.0',
doc: 'https://keygenqt.github.io/aurora-toolbox/',
docInstall: 'https://keygenqt.github.io/aurora-toolbox/install/',
latestRelease: 'https://api.github.com/repos/keygenqt/aurora-toolbox/releases/latest',
Expand Down

0 comments on commit d87f98e

Please sign in to comment.