This commit is contained in:
Johannes Millan 2026-03-26 19:58:29 +01:00
parent ba88634442
commit 4eca106653
6 changed files with 41 additions and 6 deletions

View file

@ -20,8 +20,8 @@ android {
minSdkVersion 24
targetSdkVersion 35
compileSdk 35
versionCode 18_00_00_0000
versionName "18.0.0-rc.0"
versionCode 18_00_00_9000
versionName "18.0.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
manifestPlaceholders = [
hostName : "app.super-productivity.com",

View file

@ -0,0 +1,10 @@
- improve mobile gesture hints
- fix migration handling integration spec
- rename built-in Google Calendar ICAL button
- improve initial render
- use neutral close button in fullscreen editor
- improve add task bar task reveal timing
- prevent scroll-to-top when closing add-task bar on touch devices
- hide hover controls on touch-only devices
- save task title on mobile when tapping outside bottom panel
- suppress persistence snack during initial preset selection

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "superProductivity",
"version": "18.0.0-rc.0",
"version": "18.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "superProductivity",
"version": "18.0.0-rc.0",
"version": "18.0.0",
"license": "MIT",
"workspaces": [
"packages/*"

View file

@ -1,6 +1,6 @@
{
"name": "superProductivity",
"version": "18.0.0-rc.0",
"version": "18.0.0",
"description": "ToDo list and Time Tracking",
"keywords": [
"ToDo",

View file

@ -0,0 +1,25 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'none'; script-src 'unsafe-inline'"
/>
<title>Redirecting to Super Productivity…</title>
</head>
<body>
<p>Redirecting to Super Productivity…</p>
<script>
(function () {
var params = new URLSearchParams(window.location.search);
var query = params.toString();
var deepLink = 'com.super-productivity.app://plugin-oauth-callback';
if (query) {
deepLink += '?' + query;
}
window.location.replace(deepLink);
})();
</script>
</body>
</html>

View file

@ -1,6 +1,6 @@
// this file is automatically generated by git.version.ts script
export const versions = {
version: '18.0.0-rc.0',
version: '18.0.0',
revision: 'NO_REV',
branch: 'NO_BRANCH',
};