Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: manusa/electronim
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.94
Choose a base ref
...
head repository: manusa/electronim
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.0.95
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Sep 2, 2023

  1. 🤖 add Python3 distutils to copr environment

    Signed-off-by: Marc Nuri <marc@marcnuri.com>
    manusa committed Sep 2, 2023
    Copy the full SHA
    7e2d110 View commit details
  2. 🤖 prevent electron-builder from publishing

    Signed-off-by: Marc Nuri <marc@marcnuri.com>
    manusa committed Sep 2, 2023
    Copy the full SHA
    d44dd4e View commit details
Showing with 5 additions and 3 deletions.
  1. +2 −0 build-config/electronim.spec
  2. +3 −3 package.json
2 changes: 2 additions & 0 deletions build-config/electronim.spec
Original file line number Diff line number Diff line change
@@ -19,6 +19,8 @@ BuildRequires: npm
%endif

BuildRequires: python3-devel
# gyp requires distutils provided now by python3-setuptools https://fedoraproject.org/wiki/Changes/Python3.12#The_Python_standard_library_distutils_module_will_be_removed
BuildRequires: python3-setuptools
BuildRequires: gcc-c++
BuildRequires: git-core
BuildRequires: make
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -27,11 +27,11 @@
"prepack": "node webpack.js",
"prepublish": "node webpack.js",
"prebuild:linux": "node webpack.js",
"build:linux": "electron-builder --linux",
"build:linux": "electron-builder --linux --publish never",
"prebuild:mac": "node webpack.js",
"build:mac": "electron-builder --mac",
"build:mac": "electron-builder --mac --publish never",
"prebuild:win": "node webpack.js",
"build:win": "electron-builder --win"
"build:win": "electron-builder --win --publish never"
},
"publishConfig": {
"access": "public"