Skip to content

Backmerge after 1.1.1 fixes #251

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Version 1.1.0 (1 May 2025)
# Version 1.1.1 (28 May 2025)

Fixed Apple Silicon installer.
Fixed experimental data file parser.

New, updated documentation.
Updated numpy and Qt6 versions.
4 changes: 2 additions & 2 deletions EasyReflectometryApp/Backends/Mock/Home.qml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ QtObject {
property bool created: false

readonly property var version: {
'number': '1.1.0',
'date': '1 May 2025',
'number': '1.1.1',
'date': '28 May 2025',
}

readonly property var urls: {
Expand Down
3 changes: 2 additions & 1 deletion EasyReflectometryApp/Backends/Py/logic/layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from easyreflectometry import Project as ProjectLib
from easyreflectometry.sample import LayerAreaPerMolecule
from easyreflectometry.sample import LayerCollection
from easyreflectometry.sample import Material


class Layers:
Expand Down Expand Up @@ -42,7 +43,7 @@ def remove_at_index(self, value: str) -> None:

def add_new(self) -> None:
if 'Si' not in [material.name for material in self._project_lib._materials]:
self._project_lib._materials.add_material('Si', 2.07, 0.0)
self._project_lib._materials.add_material(Material(name='Si', sld=2.07, isld=0.0))
index_si = [material.name for material in self._project_lib._materials].index('Si')
self._layers.add_layer()
self._layers[-1].material = self._project_lib._materials[index_si]
Expand Down
1 change: 0 additions & 1 deletion EasyReflectometryApp/Backends/Py/sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ def setCurrentModelIndex(self, new_value: int) -> None:
self._project_lib.current_model_index = new_value
self.modelsIndexChanged.emit()
self.assembliesTableChanged.emit()
self._clearCacheAndEmitLayersChanged()
self.externalRefreshPlot.emit()

@Slot(str)
Expand Down
2 changes: 1 addition & 1 deletion EasyReflectometryApp/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.0'
__version__ = '1.1.1'
4 changes: 2 additions & 2 deletions docs/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@
# the built documents.
#
# The short X.Y version.
version = '1.1.0'
version = '1.1.1'
# The full version, including alpha/beta/rc tags.
release = '1.1.0'
release = '1.1.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
10 changes: 5 additions & 5 deletions docs/src/installation.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Installation

To make the installation of EasyReflectometry as easy as possible, we prepare packaged releases for three major operating systems:
- [Windows](https://github.com/EasyScience/EasyReflectometryApp/releases/download/v1.1.0/EasyReflectometryApp_v1.1.0_windows-2022.exe)
- [MacOS (Intel)](https://github.com/EasyScience/EasyReflectometryApp/releases/download/v1.1.0/EasyReflectometryApp_v1.1.0_macos-13-Intel.zip)
- [MacOS (Silicon)](https://github.com/EasyScience/EasyReflectometryApp/releases/download/v1.1.0/EasyReflectometryApp_v1.1.0_macos-14-AppleSilicon.zip)
- [Linux (built on Ubuntu-24.04)](https://github.com/EasyScience/EasyReflectometryApp/releases/download/v1.1.0/EasyReflectometryApp_v1.1.0_ubuntu-22.04)
- [Linux (built on Ubuntu-22.04)](https://github.com/EasyScience/EasyReflectometryApp/releases/download/v1.1.0/EasyReflectometryApp_v1.1.0_ubuntu-24.04)
- [Windows](https://github.com/EasyScience/EasyReflectometryApp/releases/download/v1.1.1/EasyReflectometryApp_v1.1.1_windows-2022.exe)
- [MacOS (Intel)](https://github.com/EasyScience/EasyReflectometryApp/releases/download/v1.1.1/EasyReflectometryApp_v1.1.1_macos-13-Intel.zip)
- [MacOS (Silicon)](https://github.com/EasyScience/EasyReflectometryApp/releases/download/v1.1.1/EasyReflectometryApp_v1.1.1_macos-14-AppleSilicon.zip)
- [Linux (built on Ubuntu-24.04)](https://github.com/EasyScience/EasyReflectometryApp/releases/download/v1.1.1/EasyReflectometryApp_v1.1.1_ubuntu-22.04)
- [Linux (built on Ubuntu-22.04)](https://github.com/EasyScience/EasyReflectometryApp/releases/download/v1.1.1/EasyReflectometryApp_v1.1.1_ubuntu-24.04)

If the relevant EasyReflectometry installation does not work on your system, then please try installation from source.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorial.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Getting started
This is the tutorial for EasyReflectometryApp and how to use it.
Version: 1.1.0
Version: 1.1.1

## Home page
When opening up the EasyRecletometryApp you are presented with the **Home** page.
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ build-backend = 'hatchling.build'

[project]
name = 'EasyReflectometryApp'
version = '1.1.0'
release_data = '01 May 2025'
version = '1.1.1'
release_data = '28 May 2025'
description = "Making reflectometry data analysis and modelling easy."
authors = [
{name = "Andrew R. McCluskey"},
Expand Down Expand Up @@ -41,7 +41,8 @@ dependencies = [
ci = [
'pyinstaller',
'licensename',
'dephell_licenses'
'dephell_licenses',
'charset-normalizer<3.2',
]

docs = [
Expand Down