diff --git a/Makefile b/Makefile index 901b267..6e31a0f 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ all : fetch build artifacts clean : rm -rf work - rm -f librewolf-$(shell cat version).*.en-US.win64* md5sums.txt upload.txt + rm -f librewolf-$(shell cat version).*.en-US.win64* md5sums.txt upload.txt firefox-$(shell cat version).en-US.win64.zip veryclean : clean rm -rf librewolf-$(shell cat version) diff --git a/assets/mozconfig.windows b/assets/mozconfig.windows index 8f308fc..8e0ccc6 100644 --- a/assets/mozconfig.windows +++ b/assets/mozconfig.windows @@ -31,6 +31,5 @@ mk_add_options MOZ_TELEMETRY_REPORTING=0 # - no need to specify wasi sdk folder # -ac_add_options --disable-installer ac_add_options --disable-updater ac_add_options --disable-maintenance-service diff --git a/mk.py b/mk.py index 1a42367..439a802 100755 --- a/mk.py +++ b/mk.py @@ -97,7 +97,10 @@ def artifacts(): # let's get 'release'. with open('release','r') as file2: release = file2.read().rstrip() - full_version = '{}.{}'.format(version,release) + if release == '0' : + full_version = '{}'.format(version) + else: + full_version = '{}.{}'.format(version,release) # let's copy in the .ico icon. exec('cp -v assets/librewolf.ico work/librewolf') diff --git a/release b/release index 0cfbf08..573541a 100644 --- a/release +++ b/release @@ -1 +1 @@ -2 +0 diff --git a/version b/version index c8cd6d2..7dde245 100644 --- a/version +++ b/version @@ -1 +1 @@ -95.0.2 \ No newline at end of file +96.0 \ No newline at end of file