Skip to content

Commit

Permalink
release: 2.1.0 alpha
Browse files Browse the repository at this point in the history
* Modify version and RPM spec to point to 2.1 branch
* Add minor '%' after Daily utilization
* A few more features may be added like:
  - #525
  - #524

Change-Id: Id98f37ae211e1a3dea8d99841ad0e0e499a99a99
  • Loading branch information
sadsfae committed Sep 25, 2024
1 parent e642b43 commit c12131a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion conf/quads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ spare_pool_owner: quads
# display name for QUADS email notifications
mail_display_name: "QUADS Scheduler"
# set header for User-Agent:
mail_user_agent: "Rufus Postman 2.0.5"
mail_user_agent: "Rufus Postman 2.1.0"
domain: example.com
log: /opt/quads/log/quads.log
quads_base_url: http://127.0.0.1:5000/
Expand Down
8 changes: 6 additions & 2 deletions rpm/quads.spec
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

%define name quads-dev
%define reponame quads
%define branch latest
%define version 2.0.5
%define branch 2.1
%define version 2.1.0
%define build_timestamp %{lua: print(os.date("%Y%m%d"))}

Summary: Automated future scheduling, documentation, end-to-end provisioning and assignment of servers and networks.
Expand Down Expand Up @@ -225,6 +225,10 @@ find /opt/quads/ | grep -E "(/__pycache__$|\.pyc$|\.pyo$)" | xargs rm -rf

%changelog

* Wed Sep 25 2024 Will Foster <[email protected]>
- 2.1.0 Alpha
- Remove Wordpress entirely, serve wiki from quads-web

* Thu Sep 19 2024 Will Foster <[email protected]>
- 2.0.5 Release
- multiple roles support to auth
Expand Down
4 changes: 2 additions & 2 deletions src/quads/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def API_URL(self):

FPING_TIMEOUT = 10000

QUADSVERSION = "2.0.5"
QUADSVERSION = "2.1.0"
QUADSCODENAME = "bowie"

SUPPORTED = [
Expand Down Expand Up @@ -122,4 +122,4 @@ def API_URL(self):

if __name__ == "__main__":
if not Config.loaded:
Config.load_from_yaml(DEFAULT_CONF_PATH)
Config.load_from_yaml(DEFAULT_CONF_PATH)
2 changes: 1 addition & 1 deletion src/quads/web/templates/wiki/assignments.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h3><strong>SUMMARY</strong></h3>
{% endfor %}
</tbody>
</table>
<p>Daily Utilization: {{ daily_utilization }}</p>
<p>Daily Utilization: {{ daily_utilization }}%</p>
<p><a href="#unmanaged" class="link-secondary text-decoration-none">Unmanaged Hosts</a></p>
<p><a href="#faulty" class="link-secondary text-decoration-none">Faulty Hosts</a></p>
<h3><strong>DETAILS</strong></h3>
Expand Down

0 comments on commit c12131a

Please sign in to comment.